Use this skill to access the Notion API for read/write operations.
Notes:
- •
NOTION_API_KEYis optional; without it the Notion API requests will fail. - •Default Notion API version is
2025-09-03unless overridden. - •The CLI outputs JSON with
status_code,ok, andresponse.
Examples:
- •Search pages:
- •
method=POST - •
path=/v1/search - •
body={"query":"roadmap","page_size":5}
- •
- •Retrieve a page:
- •
method=GET - •
path=/v1/pages/<page_id>
- •