--- title: 'Notion' description: 'Query databases, create pages, and manage blocks with the Notion API.' --- # Notion Query databases, create pages, and manage blocks with the Notion API. | Detail | Value | |---|---| | Category | Productivity | | Base URL | `https://api.notion.com` | | Authentication | Bearer Token | | Endpoints | 6 | | Connector key | `notion` | ## Using Notion in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Notion** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [POST /databases/{database_id}/query](./post_databases_database_id_query_data_querydatabase) | Query a database | | [POST /pages](./post_pages_data_createpage) | Create a page | | [GET /pages/{page_id}](./get_pages_page_id_data_getpage) | Retrieve a page | | [PATCH /pages/{page_id}](./patch_pages_page_id_data_updatepage) | Update page properties | | [GET /blocks/{block_id}/children](./get_blocks_block_id_children_data_getblockchildren) | Get block children | | [POST /search](./post_search_data_search) | Search pages and databases | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.