Skip to main content
FuseFuse
IntegrationsDatadogActions

List Datadog dashboards

List dashboards with start/count pagination via opaque cursor. Requires dashboards_read.

Agent markdown

dashboards.list · Datadog · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
dashboardsarray<object>YesmaxItems 100
dashboards[]objectYesadditionalProperties false
dashboards[].idstringYesminLength 1; maxLength 128
dashboards[].titlestringYesminLength 1; maxLength 500
dashboards[].descriptionstringNomaxLength 4000
dashboards[].layout_typestringNomaxLength 64
dashboards[].urlstringNomaxLength 2048
dashboards[].created_atstringNominLength 1; maxLength 64
dashboards[].modified_atstringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "dashboards": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "title": {
            "type": "string",
            "minLength": 1,
            "maxLength": 500
          },
          "description": {
            "type": "string",
            "maxLength": 4000
          },
          "layout_type": {
            "type": "string",
            "maxLength": 64
          },
          "url": {
            "type": "string",
            "maxLength": 2048
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "modified_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "title"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "dashboards"
  ]
}