Skip to main content
FuseFuse
IntegrationsNotionActions

Search Notion

Search pages and data sources shared with the Notion connection.

Agent markdown

search · 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
querystringNominLength 1; maxLength 200
start_cursorstringNominLength 1; maxLength 512
page_sizeintegerNominimum 1; maximum 100
filterobjectNoadditionalProperties false
filter.propertystringYesenum object
filter.valuestringYesenum page | data_source
sortobjectNoadditionalProperties false
sort.timestampstringYesenum last_edited_time
sort.directionstringYesenum ascending | descending
in_trashbooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
resultsarray<object>YesmaxItems 100
results[]objectYesadditionalProperties false
results[].idstringYesminLength 1; maxLength 64
results[].objectstringYesminLength 1; maxLength 64
results[].titlestringNomaxLength 2000
results[].urlstringNomaxLength 2048
results[].in_trashbooleanNo
results[].created_atstringNominLength 1; maxLength 64
results[].updated_atstringNominLength 1; maxLength 64
results[].parentobjectNoadditionalProperties false
results[].parent.typestringNominLength 1; maxLength 64
results[].parent.page_idstringNominLength 1; maxLength 64
results[].parent.database_idstringNominLength 1; maxLength 64
results[].parent.data_source_idstringNominLength 1; maxLength 64
results[].parent.workspacebooleanNo
next_cursorstringNominLength 1; maxLength 512
has_morebooleanNo
request_statusobjectNoadditionalProperties false
request_status.typestringYesenum complete | incomplete
request_status.incomplete_reasonstringNomaxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "start_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "filter": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "property": {
          "type": "string",
          "enum": [
            "object"
          ]
        },
        "value": {
          "type": "string",
          "enum": [
            "page",
            "data_source"
          ]
        }
      },
      "required": [
        "property",
        "value"
      ]
    },
    "sort": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "timestamp": {
          "type": "string",
          "enum": [
            "last_edited_time"
          ]
        },
        "direction": {
          "type": "string",
          "enum": [
            "ascending",
            "descending"
          ]
        }
      },
      "required": [
        "timestamp",
        "direction"
      ]
    },
    "in_trash": {
      "type": "boolean"
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "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"
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "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"
              }
            }
          }
        },
        "required": [
          "id",
          "object"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "has_more": {
      "type": "boolean"
    },
    "request_status": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "complete",
            "incomplete"
          ]
        },
        "incomplete_reason": {
          "type": "string",
          "maxLength": 128
        }
      },
      "required": [
        "type"
      ]
    }
  },
  "required": [
    "results"
  ]
}