Skip to main content
FuseFuse
IntegrationsNotionActions

Get Notion data source

Retrieve a Notion data source and its property schema.

Agent markdown

data_sources.get · Notion · v1

Details

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

Scopes

  • read_content

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
data_source_idstringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
objectstringYesminLength 1; maxLength 64
titlestringNomaxLength 2000
urlstringNomaxLength 2048
in_trashbooleanNo
parentobjectNoadditionalProperties false
parent.typestringNominLength 1; maxLength 64
parent.page_idstringNominLength 1; maxLength 64
parent.database_idstringNominLength 1; maxLength 64
parent.data_source_idstringNominLength 1; maxLength 64
parent.workspacebooleanNo
propertiesarray<object>NomaxItems 64
properties[]objectYesadditionalProperties false
properties[].namestringYesminLength 1; maxLength 200
properties[].typestringYesminLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "data_source_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "data_source_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "object": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "title": {
      "type": "string",
      "maxLength": 2000
    },
    "url": {
      "type": "string",
      "maxLength": 2048
    },
    "in_trash": {
      "type": "boolean"
    },
    "parent": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "page_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "database_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "data_source_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "workspace": {
          "type": "boolean"
        }
      }
    },
    "properties": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "name",
          "type"
        ]
      },
      "maxItems": 64
    }
  },
  "required": [
    "id",
    "object"
  ]
}