Skip to main content
FuseFuse
IntegrationsNotionActions

Get Notion database

Retrieve a Notion database container and its data sources.

Agent markdown

databases.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
database_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
data_sourcesarray<object>NomaxItems 32
data_sources[]objectYesadditionalProperties false
data_sources[].idstringYesminLength 1; maxLength 64
data_sources[].namestringNomaxLength 2000

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "database_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "database_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"
    },
    "data_sources": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "name": {
            "type": "string",
            "maxLength": 2000
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 32
    }
  },
  "required": [
    "id",
    "object"
  ]
}