Get Page
Retrieves a Page object using the ID in the request path. This endpoint exposes page properties, not page content.
External Documentation
To learn more, visit the Notion documentation.
Parameters
Parameter | Description |
---|---|
Page ID | The ID of the page to retrieve. Note: Only pages with titles will appear in the autofill. If the relevant page name does not appear, manually add it's ID instead. The ID can be found in the suffix of the page's web link, e.g. the page in link https://www.notion.so/Blink-Is-Awesome-d132f3904fbc45329chjc7b1d52661e5 will have the id d132f3904fbc45329chjc7b1d52661e5 . |
Example Output
{
"archived": false,
"cover": null,
"created_by": {
"id": "6794760a-1f15-45cd-9c65-0dfe42f5135a",
"object": "user"
},
"created_time": "2021-04-27T20:38:00.000Z",
"icon": {
"emoji": "📕",
"type": "emoji"
},
"id": "c4d39556-6364-46a1-8a61-ebbb668f7445",
"last_edited_by": {
"id": "92a680bb-6970-4726-952b-4f4c03bff617",
"object": "user"
},
"last_edited_time": "2022-03-02T05:22:00.000Z",
"object": "page",
"parent": {
"page_id": "c1218692-102d-4b47-ab38-c21900b3557b",
"type": "page_id"
},
"properties": {
"title": {
"id": "title",
"title": [
{
"annotations": {
"bold": false,
"code": false,
"color": "default",
"italic": false,
"strikethrough": false,
"underline": false
},
"href": null,
"plain_text": "Reading List",
"text": {
"content": "Reading List",
"link": null
},
"type": "text"
}
],
"type": "title"
}
},
"url": "https://www.notion.so/Reading-List-c4d39556636446a18a61ebbb668f7445"
}
Workflow Library Example
Get Page with Notion and Send Results Via Email
Preview this Workflow on desktop