Retrieve a page property item
GET
https://api.notion.com/v1/pages/{page_id}/properties/{property_id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.notion.com/v1/pages//properties/?page_id=Identifier for a Notion page&property_id=Identifier for a page property&start_cursor=For paginated properties.&page_size=' \
--header 'Notion-Version;'
Response Response Example
Number Property Item
{
"object": "property_item",
"id" "kjPO",
"type": "number",
"number": 2
}
Request
Path Params
page_id
string
required
property_id
string
required
Query Params
page_id
string
required
Example:
Identifier for a Notion page
property_id
string
required
Example:
Identifier for a page property
start_cursor
string
optional
Example:
For paginated properties.
page_size
integer
optional
Header Params
Notion-Version
string
optional
Responses
Modified at 2023-04-28 08:49:29