API-retrieve-a-database
Access and retrieve specific Notion databases using their unique ID, enabling AI agents to interact with and manage database content efficiently via the Notion API.
Instructions
Notion | Retrieve a database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes | An identifier for the Notion database. |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"database_id": {
"description": "An identifier for the Notion database.",
"type": "string"
}
},
"required": [
"database_id"
],
"type": "object"
}