Connect your AI agent to Notion workspaces. Create and update pages, databases, and content based on AI agent interactions. Enable AI-powered content generation and knowledge management.
Bearer token
curl https://api.notion.com/v1/pages \
-H "Authorization: Bearer YOUR_NOTION_TOKEN" \
-H "Notion-Version: 2022-06-28" \
-H "Content-Type: application/json" \
-d '{
"parent": {"database_id": "YOUR_DATABASE_ID"},
"properties": {
"Name": {"title": [{"text": {"content": "New Page"}}]}
}
}'