Working with databases
Learn about data source schemas, querying data sources, and more.
Overview
Databases are containers for one or more data sources, each of which is a collection of pages in a Notion workspace. Data sources can be filtered, sorted, and organized as needed. They allow users to create and manipulate structured data in Notion.
Integrations can be used to help users sync databases with external systems or build workflows around Notion databases.
In this guide, you'll learn:
- How databases and data sources are represented in the API.
- How to add items to a data source.
- How to find items within data sources.
Additional types of databases
In addition to regular Notion databases, there are two other types of databases & data sources to be aware of. However, neither of these database types are currently supported by Notion's API.
Linked data sources
Notion offers linked data sources as a way of showing a data source in multiple places. You can identify them by a β next to the data source title which, when clicked, takes you to the original data source.

Linked databases are indicated with an arrow next to the name.
Notion's API does not currently support linked data sources. When sharing a database with your integration, make sure it contains the original data source!
Wiki databases
Wiki databases are a special category of databases that allow Workspace Owners to organize child pages and databases with a homepage view. Wiki database pages can be verified by the Workspace Owner with an optional expiration date for the verification.
Pages in a wiki database will have a verification
property that can be set through your Notion workspace. See directions for creating wikis and verifying pages in our Help Center.
Wiki databases can currently only be created through your Notion workspace directly (i.e., not Notion's API). Ability to retrieve wiki databases in the API may be limited, and you can't add multiple data sources to a wiki database.
To learn more about creating and working with wiki databases, see the following Help Center articles:
Structure
Database objects, and their data source children, describe a part of what a user sees in Notion when they open a database. See our documentation on database objects, data source objects, and data source properties for a complete description.
Databases contain a list of data sources (IDs and names). In turn, each data source can be retrieved and managed separately and acts as the parent for pages (rows of data) that live under them.
{
"object": "database",
"id": "248104cd-477e-80fd-b757-e945d38000bd",
"title": [
{
"type": "text",
"text": {
"content": "Grocery DB",
// ...
},
// ...
}
],
"parent": {
"type": "page_id",
"page_id": "255104cd-477e-808c-b279-d39ab803a7d2"
},
"is_inline": false,
"in_trash": false,
"created_time": "2025-08-07T10:11:07.504-07:00",
"last_edited_time": "2025-08-10T15:53:11.386-07:00",
"data_sources": [
{
"id": "248104cd-477e-80af-bc30-000bd28de8f9",
"name": "Grocery list"
}
],
"url": "https://www.notion.so/example/248104cd477e80fdb757e945d38000bd",
"icon": null,
"cover": {
"type": "external",
"external": {
"url": "https://website.domain/images/image.png"
}
},
}
{
"object": "data_source",
"id": "248104cd-477e-80af-bc30-000bd28de8f9",
"created_time": "2021-07-08T23:50:00.000Z",
"last_edited_time": "2021-07-08T23:50:00.000Z",
"properties": {
"Grocery item": {
"id": "fy%3A%7B", // URL-decoded: fy:{
"type": "title",
"title": {}
},
"Price": {
"id": "dia%5B", // URL-decoded: dia[
"type": "number",
"number": {
"format": "dollar"
}
},
"Last ordered": {
"id": "%5D%5C%5CR%5B", // URL-decoded: ]\\R[
"type": "date",
"date": {}
},
},
"parent": {
"type": "database_id",
"database_id": "248104cd-477e-80fd-b757-e945d38000bd"
},
"database_parent": {
"type": "page_id",
"page_id": "255104cd-477e-808c-b279-d39ab803a7d2"
},
"archived": false,
"icon": {
"type": "emoji",
"emoji": "π"
},
"title": [
{
"type": "text",
"text": {
"content": "Grocery list",
"link": null
},
// ...
}
]
}
The most important part is the data source's schema, defined in the properties
object.
Terminology
The columns of a Notion data source are referred to as its βpropertiesβ or βschemaβ.
The rows of a data source are individual Pages that live under it and each contain page properties (keys and values that conform to the data source's schema) and content (what you see in the body of the page in the Notion app).
Maximum schema size recommendation
Notion recommends a maximum schema size of 50KB. Updates to database schemas that are too large will be blocked to help maintain database performance.
Data source properties

Example of a data source with three properties (Grocery item, Price, Last ordered).
Let's assume you're viewing a data source as a table. The columns of the data source are represented in the API by database property objects. Property objects store a description of a column, including a type for the allowable values that can go into a column.
You might recognize a few of the common types:
For each type, additional configuration may also be available. Let's take a look at the properties
section of an example data source object.
{
"object": "data_source",
"properties": {
"Grocery item": {
"id": "fy%3A%7B", // URL-decoded: fy:{
"type": "title",
"title": {}
},
"Price": {
"id": "dia%5B", // URL-decoded: dia[
"type": "number",
"number": {
"format": "dollar"
}
},
"Last ordered": {
"id": "%5D%5C%5CR%5B", // URL-decoded: ]\\R[
"type": "date",
"date": {}
},
}
// ... remaining fields omitted
}
In this data source object, there are three properties
defined. Each key is the property name and each value is a property object. Here are some key takeaways:
- The
"title"
type is special. Every data source has exactly one property with the"title"
type. Properties of this type refer to the page title for each item in the database. In this example, the Grocery item property has this type. - The value of
type
corresponds to another key in the property object. Each property object has a nested property named the same as itstype
value. For example, Last ordered has the type"date"
, and it also has adate
property. This pattern is used throughout the Notion API on many objects and we call it type-specific data. - Certain property object types have additional configuration. In this example, Price has the type
"number"
. Number property objects have additional configuration inside thenumber
property. In this example, theformat
configuration is set to"dollar"
to control the appearance of page property values in this column.
Iterate over a data source object
A request to Retrieve a data source returns a Data source object. You can iterate over the properties
object in the response to list information about each property. For example:
Object.entries(dataSource.properties).forEach(([propertyName, propertyValue]) => {
console.log(`${propertyName}: ${propertyValue.type}`);
});
Adding pages to a data source
Pages are used as items inside a data source, and each page's properties must conform to its parent database's schema. In other words, if you're viewing a data source as a table, a page's properties define all the values in a single row.
The page properties that are valid depend on the page's parent
If you are creating a page in a data source, the page properties must match the properties of the database. If you are creating a page that is not a child of a database,
title
is the only property that can be set.
Pages are added to a data source using the Create a page API endpoint. Let's try to add a page to the example data source above.
The Create a page endpoint has two required parameters: parent
and properties
.
When adding a page to a database, the parent
parameter must be a data source parent. We can build this object for the example data source above:
{
"type": "data_source_id",
"data_source_id": "248104cd-477e-80af-bc30-000bd28de8f9"
}
Permissions
Before an integration can create a page within another page, it needs access to the page parent. To share a page with an integration, click the β’β’β’ menu at the top right of a page, scroll to
Add connections
, and use the search bar to find and select the integration from the dropdown list.
Where can I find my database and data source's IDs?
- Open the database as a full page in Notion.
- Use the
Share
menu toCopy link
.- Now paste the link in your text editor so you can take a closer look. The URL uses the following format:
https://www.notion.so/{workspace_name}/{database_id}?v={view_id}
Find the part that corresponds to
{database_id}
in the URL you pasted. It is a 36 character long string. This value is your database ID.Note that when you receive the database ID from the API, e.g. the search endpoint, it will contain hyphens in the UUIDv4 format. You may use either the hyphenated or un-hyphenated ID when calling the API.
To get the data source ID, either use the Retrieve a database endpoint first and check the
data_sources
array, or use the overflow menu under "Manage data sources" to copy it from the Notion app:![]()
Continuing the create page example above, the properties
parameter is an object that uses property names or IDs as keys, and property value objects as values. In order to create this parameter correctly, you refer to the property objects in the database's schema as a blueprint. We can build this object for the example database above too:
{
"Grocery item": {
"type": "title",
"title": [{ "type": "text", "text": { "content": "Tomatoes" } }]
},
"Price": {
"type": "number",
"number": 1.49
},
"Last ordered": {
"type": "date",
"date": { "start": "2021-05-11" }
}
}
Building a property value object in code
Building the property value object manually, as described in this guide, is only helpful when you're working with one specific database that you know about ahead of time.
In order to build an integration that works with any database a user picks, and to remain flexible as the user's chosen database inevitably changes in the future, use the Retrieve a database endpoint, followed by Retrieve a data source. Your integration can call this endpoint to get a current data source schema, and then create the
properties
parameter in code based on that schema.
Using both the parent
and properties
parameters, we create a page by sending a request to the endpoint.
curl -X POST https://api.notion.com/v1/pages \
-H 'Authorization: Bearer '"$NOTION_API_KEY"'' \
-H "Content-Type: application/json" \
-H "Notion-Version: <<latestNotionVersion>>" \
--data '{
"parent": { "type": "data_source_id", "data_source_id": "248104cd-477e-80af-bc30-000bd28de8f9" },
"properties": {
"Grocery item": {
"type": "title",
"title": [{ "type": "text", "text": { "content": "Tomatoes" } }]
},
"Price": {
"type": "number",
"number": 1.49
},
"Last ordered": {
"type": "date",
"date": { "start": "2021-05-11" }
}
}
}'
const { Client } = require('@notionhq/client');
const notion = new Client({ auth: process.env.NOTION_API_KEY });
(async () => {
const response = await notion.pages.create({
parent: {
data_source_id: '248104cd-477e-80af-bc30-000bd28de8f9',
},
properties: {
'Grocery item': {
type: 'title',
title: [
{
type: 'text',
text: {
content: 'Tomatoes',
},
},
],
},
Price: {
type: 'number',
number: 1.49,
},
'Last ordered': {
type: 'date',
date: {
start: '2021-05-11',
},
},
},
});
console.log(response);
})();
Once the page is added, you'll receive a response containing the new page object. An important property in the response is the page ID (id
). If you're connecting Notion to an external system, it's a good idea to store the page ID. If you want to update the page properties later, you can use the ID with the Update page properties endpoint.
Finding pages in a data source
Pages can be read from a data source using the Query a data source endpoint. This endpoint allows you to find pages based on criteria such as "which page has the most recent Last ordered date". Some data sources are very large and this endpoint also allows you to get the results in a specific order, and get the results in smaller batches.
Getting a specific page
If you're looking for one specific page and already have its page ID, you don't need to query a database to find it. Instead, use the Retrieve a page endpoint.
Filtering data source pages
The criteria used to find pages are called filters. Filters can describe simple conditions (i.e. "Tag includes Urgent") or more complex conditions (i.e. "Tag includes Urgent AND Due date is within the next week AND Assignee equals Cassandra Vasquez"). These complex conditions are called compound filters because they use "and" or "or" to join multiple single property conditions together.
Finding all pages in a data source
In order to find all the pages in a data source, send a request to the query a database without a
filter
parameter.
In this guide, let's focus on a single property condition using the example data source above. Looking at the data source schema, we know the Last ordered property uses the type "date"
. This means we can build a filter for the Last ordered property using any condition for the "date"
type. The following filter object matches pages where the Last ordered date is in the past week:
{
"property": "Last ordered",
"date": {
"past_week": {}
}
}
Using this filter, we can find all the pages in the example database that match the condition.
curl -X POST https://api.notion.com/v1/data_sources/248104cd477e80afbc30000bd28de8f9/query \
-H 'Authorization: Bearer '"$NOTION_API_KEY"''
-H "Content-Type: application/json" \
-H "Notion-Version: <<latestNotionVersion>>" \
--data '{
"filter": {
"property": "Last ordered",
"date": {
"past_week": {}
}
}
}'
const { Client } = require('@notionhq/client');
const notion = new Client({ auth: process.env.NOTION_API_KEY });
(async () => {
const dataSourceId = '248104cd-477e-80af-bc30-000bd28de8f9';
const response = await notion.dataSources.query({
data_source_id: dataSourceId,
filter: {
property: 'Last ordered',
date: {
past_week: {},
},
}
});
console.log(response);
})();
You'll receive a response that contains a list of matching page objects.
{
"object": "list",
"results": [
{
"object": "page",
/* details omitted */
}
],
"has_more": false,
"next_cursor": null
}
This is a paginated response. Paginated responses are used throughout the Notion API when returning a potentially large list of objects. The maximum number of results in one paginated response is 100. The pagination reference explains how to use the "start_cursor"
and "page_size"
parameters to get more than 100 results.
Sorting data source pages
In this case, the individual pages we requested are in the "results"
array. What if our integration (or its users) cared most about pages that were created recently? It would be helpful if the results were ordered so that the most recently created page was first, especially if the results didn't fit into one paginated response.
The sort
parameter is used to order results by individual properties or by timestamps. This parameter can be assigned an array of sort object.
The time which a page was created is not a page property (properties that conform to the data source schema). Instead, it's a property that every page has, and it's one of two kinds of timestamps. It is called the "created_time"
timestamp. Let's build a sort object that orders results so the most recently created page is first:
{
"timestamp": "created_time",
"direction": "descending"
}
Finally, let's update the request we made earlier to order the page results using this sort object:
curl -X POST https://api.notion.com/v1/data_sources/248104cd477e80afbc30000bd28de8f9/query \
-H 'Authorization: Bearer '"$NOTION_API_KEY"''
-H "Content-Type: application/json" \
-H "Notion-Version: <<latestNotionVersion>>" \
--data '{
"filter": {
"property": "Last ordered",
"date": {
"past_week": {}
}
},
"sorts": [{ "timestamp": "created_time", "direction": "descending" }]
}'
const { Client } = require('@notionhq/client');
const notion = new Client({ auth: process.env.NOTION_API_KEY });
(async () => {
const dataSourceId = '248104cd477e80afbc30000bd28de8f9';
const response = await notion.dataSources.query({
data_source_id: dataSourceId,
filter: {
property: 'Last ordered',
date: {
past_week: {},
},
},
sorts: [
{
timestamp: 'created_time',
direction: 'descending',
},
]
});
console.log(response);
})();
Conclusion
Understanding data source schemas, made from a collection of properties, is key to working with Notion databases. This enables you to add, query for, and manage pages to a data source.
You're ready to help users take advantage of Notion's flexible and extensible data source interface to work with more kinds of data. There's more to learn and do with data sources in the resources below.
Next steps
- This guide explains working with page properties. Take a look at working with page content.
- Explore the database object and data source object to see their other attributes available in the API.
- Learn about the other page property value types. In particular, try to do more with rich text.
- Learn more about pagination.
Updated 5 days ago