Introduction
Introduction
📘
You need an integration token to interact with the Notion API. You can find an integration token after you create an integration on the integration settings page. If this is your first look at the Notion API, we recommend beginning with the Getting started guide to learn how to create an integration. If you want to work on a specific integration, but can't access the token, confirm that you are an admin in the associated workspace. You can check inside the Notion UI via Settings & Members
in the left sidebar. If you're not an admin in any of your workspaces, you can create a personal workspace for free.
Conventions
https://api.notion.com
. HTTPS is required for all API requests.GET
, POST
, PATCH
, and DELETE
requests on page and database resources. Request and response bodies are encoded as JSON.JSON conventions
"object"
property. This property can be used to determine the type of the resource (e.g. "database"
, "user"
, etc.)"id"
property. You may omit dashes from the ID when making requests to the API, e.g. when copying the ID from a Notion URL.snake_case
(not camelCase
or kebab-case
).2020-08-12T02:12:33.231Z
) while dates will include only the date (2020-08-12
)url
Property value object, for example, use an explicit null
instead of ""
.Code samples & SDKs
Pagination
Supported endpoints
HTTP method | Endpoint |
---|---|
GET | List all users |
GET | Retrieve block children |
GET | Retrieve a comment |
GET | Retrieve a page property item |
POST | Query a database |
POST | Search |
Responses
Field | Type | Description |
---|---|---|
has_more | boolean | Whether the response includes the end of the list. false if there are no more results. Otherwise, true . |
next_cursor | string | A string that can be used to retrieve the next page of results by passing the value as the start_cursor parameter to the same endpoint. Only available when has_more is true. |
object | "list" | The constant string "list" . |
results | array of objects | The list, or partial list, of endpoint-specific results. Refer to a supported endpoint's individual documentation for details. |
type | "block" "comment" "database" "page" "page_or_database" "property_item" "user" | A constant string that represents the type of the objects in results . |
{type} | paginated list object | An object containing type-specific pagination information. For property_item s, the value corresponds to the paginated page property type. For all other types, the value is an empty object. |
Parameters for paginated requests
🚧Parameter location varies by endpoint
GET
requests accept parameters in the query string.POST
requests receive parameters in the request body.
Parameter | Type | Description |
---|---|---|
page_size | number | The number of items from the full list to include in the response. Default: 100 Maximum: 100 The response may contain fewer than the default number of results. |
start_cursor | string | A next_cursor value returned in a previous response. Treat this as an opaque value. Defaults to undefined , which returns results from the beginning of the list. |
How to send a paginated request
1.
2.
next_cursor
value from the response (only available when has_more
is true
).3.
next_cursor
param in either the query string (for GET
requests) or in the body params (POST
requests).Example: request the next set of query results from a database
curl --location --request POST 'https://api.notion.com/v1/databases/<database_id>/query' \
--header 'Authorization: Bearer <secret_bot>' \
--header 'Content-Type: application/json' \
--data '{
"start_cursor": "33e19cb9-751f-4993-b74d-234d67d0d534"
}'
Modified at 2023-04-28 05:55:30