Skip to content

Sample Page Response

This page contains a sample LoaderPage API response for a Notion page type.

Note: The HTML and Markdown outputs shown above represent the parent Notion page. For child pages, their content is embedded as HTML and Markdown within the JSON response below.

Sample JSON Response

Key components

type : Notion page object type

url : Direct link to the Notion page

content : The main content of the page, available in both HTML and Markdown formats.

children : Child elements of the page, which can include child databases, child pages and database rows.

  • Each child page has the same JSON keys as the parent.
  • In this example, the parent page contains one child database and one child page.
  • The child database has database rows as children.

For more details on the response format, go to the Receiving Responses section.

JSON Response

{
"type": "page",
"id": "105a7f30-3194-8040-9b3d-d97e08c6bc2a",
"url": "https://www.notion.so/LoaderPage-Test-Suite-105a7f30319480409b3dd97e08c6bc2a",
"title": "LoaderPage Test Suite",
"last_modified": "2024-09-19T07:26:00.000Z",
"conversion_timestamp": "2024-09-27T05:03:00.763129+00:00",
"content": {
"html": "<blockquote>This post is written in Notion and is converted to HTML / Markdown via LoaderPage. </blockquote><h1>Paragraph</h1><p>Write in Notion’s default mode and it’ll be a paragraph.</p><p>Most annotations are supported - <b>bold,</b> <i>italics,</i> <i><b>bold and italics,</b></i> <span style=\"text-decoration:underline\">underline</span>, <code>inline code</code>, text of <span style=\"color:green\">different colours</span>, or a <span style=\"text-decoration:underline;color:blue\"><i><b>combination</b></i></span> <span style=\"text-decoration:underline;color:blue\">of</span> <span style=\"text-decoration:underline;color:blue\"><i><b></b></i></span> <span style=\"color:blue\"><i><b>different</b></i></span> <span style=\"text-decoration:underline;color:blue\"><i><b></b></i></span> <span style=\"color:green\"><i>styles</i></span>. </p><br/><p>If you add an extra spacing between paragraphs, it will be reflectedtoo.</p><h1>Headings</h1><p>All Notion headings are supported. </p><h1>This is a H1</h1><h2>This is a H2 sub heading</h2><h3>This is a H3 sub sub heading</h3><h1>Bullet lists</h1><ul><li>Bullet points are supported<ul><li>Nested bullet points are supported as well<ul><li>You can nest multiple layers</li></ul></li></ul></li><li>Of course, we can unnest the bullet points</li></ul><p>And this is a normal paragraph.</p><h1>Numbered lists</h1><ol><li>Numbered lists are supported<ol><li>Nested numbered lists work as well<ol><li>You can nest multiple layers</li></ol></li></ol></li><li>And we can unnest numbered lists too</li></ol><p>And this is a normal paragraph.</p><h1>Quotes</h1><p>You can add quotes to your blog posts:</p><blockquote>“This is a quote”. How it looks on blog depends on how you style code blocks.</blockquote><h1>Divider</h1><p>You can separate blocks with a divider</p><hr/><h1>Callouts</h1><p>Callouts will look like quotes.</p><blockquote>This is how a callout look like.</blockquote><h1>Links</h1><p>You can <a href=\"http://www.penpod.so/\">add links</a> to your content.</p><h1>Code</h1><pre><code class=\"python\">import pandas as pdimport numpy as npdf = pd.read_csv('penpod.csv')</code></pre><h1>Media</h1><p>Either upload your own image, or paste any image URL and view the image on your blog.</p><div class=\"image\" style=\"text-align: center;\"><img alt=\"Caption your images\" src=\"https://notionblog.s3.ap-southeast-1.amazonaws.com/105a7f30-3194-8040-9b3d-d97e08c6bc2a/image_6d7384cbc5c44c6e82fe730523acad74.png\"/><div>Caption your images</div></div><p>You can add appropriate captions to images using Notion captions. 👆</p><h1>Video</h1><p>Use Notion embed to show videos from popular sites.</p><div class=\"video\" style=\"position: relative; overflow: hidden; padding-top: 56.25%;\"><iframe allowfullscreen=\"\" src=\"https://www.youtube.com/embed/jP8iCuXeM3g\" style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;\"></iframe></div><h1>Tables</h1><table><tbody><tr><td>Col 1</td><td>Col 2</td></tr><tr><td>Row 1a</td><td>Row 1b</td></tr><tr><td>Row 2a</td><td>Row 2b</td></tr></tbody></table><h1>Child databases</h1><!-- notion-child-database id=\"105a7f30319480afbd89fb4e335a851e\" --><h3>Child Database: <a href=\"https://www.notion.so/105a7f30319480afbd89fb4e335a851e\">My child database</a></h3><h1>Child Pages</h1><!-- notion-child-page id=\"e96561db09dc4cf8b42cdfcad966257c\" has_children=\"True\" --><h3>Child Page: <a href=\"https://www.notion.so/e96561db09dc4cf8b42cdfcad966257c\">My child page</a></h3><br/>",
"markdown": "\n> This post is written in Notion and is converted to HTML / Markdown via LoaderPage.\n\n\nParagraph\n=========\n\n\nWrite in Notion’s default mode and it’ll be a paragraph.\n\nMost annotations are supported - **bold,** *italics,* ***bold and italics,*** underline, `inline code`, text of different colours, or a ***combination*** of ***different*** *styles*. \n\n \nIf you add an extra spacing between paragraphs, it will be reflectedtoo.\n\nHeadings\n========\n\n\nAll Notion headings are supported. \n\nThis is a H1\n============\n\n\nThis is a H2 sub heading\n------------------------\n\n\n### This is a H3 sub sub heading\n\n\nBullet lists\n============\n\n\n* Bullet points are supported\n * Nested bullet points are supported as well\n * You can nest multiple layers\n* Of course, we can unnest the bullet points\n\nAnd this is a normal paragraph.\n\nNumbered lists\n==============\n\n\n1. Numbered lists are supported\n 1. Nested numbered lists work as well\n 1. You can nest multiple layers\n2. And we can unnest numbered lists too\n\nAnd this is a normal paragraph.\n\nQuotes\n======\n\n\nYou can add quotes to your blog posts:\n\n\n> “This is a quote”. How it looks on blog depends on how you style code blocks.\n\n\nDivider\n=======\n\n\nYou can separate blocks with a divider\n\n\n\n---\n\nCallouts\n========\n\n\nCallouts will look like quotes.\n\n\n> This is how a callout look like.\n\n\nLinks\n=====\n\n\nYou can [add links](http://www.penpod.so/) to your content.\n\nCode\n====\n\n\n\n```\nimport pandas as pd\nimport numpy as np\n\ndf = pd.read_csv('penpod.csv')\n```\n\nMedia\n=====\n\n\nEither upload your own image, or paste any image URL and view the image on your blog.\n\n![Caption your images](https://notionblog.s3.ap-southeast-1.amazonaws.com/105a7f30-3194-8040-9b3d-d97e08c6bc2a/image_6d7384cbc5c44c6e82fe730523acad74.png)\n*Caption your images*\n\nYou can add appropriate captions to images using Notion captions. 👆\n\nVideo\n=====\n\n\nUse Notion embed to show videos from popular sites.\n\n[VIDEO](https://www.youtube.com/embed/jP8iCuXeM3g): https://www.youtube.com/embed/jP8iCuXeM3g\n\nTables\n======\n\n\n\n\n| Col 1 | Col 2 |\n| --- | --- |\n| Row 1a | Row 1b |\n| Row 2a | Row 2b |\n\n\nChild databases\n===============\n\n\n### Child Database: [My child database](https://www.notion.so/105a7f30319480afbd89fb4e335a851e)\n\n\nChild Pages\n===========\n\n\n### Child Page: [My child page](https://www.notion.so/e96561db09dc4cf8b42cdfcad966257c)\n\n\n \n"
},
"depth": 0,
"parent": {
"type": "workspace",
"parent_id": ""
},
"children": [
{
"type": "database",
"id": "105a7f30-3194-80af-bd89-fb4e335a851e",
"url": "https://www.notion.so/105a7f30319480afbd89fb4e335a851e",
"title": "My child database",
"last_modified": "2024-09-18T16:44:00.000Z",
"conversion_timestamp": "2024-09-27T05:03:00.763129+00:00",
"content": {
"html": "<table><tr><th>Tags</th><th>Name</th></tr><tr><td>LoaderPage</td><td>Row 1</td></tr><tr><td>LoaderPage, Notion</td><td>Row 2</td></tr></table>",
"markdown": "\n\n| Tags | Name |\n| --- | --- |\n| LoaderPage | Row 1 |\n| LoaderPage, Notion | Row 2 |\n\n"
},
"depth": 1,
"parent": {
"type": "page_id",
"parent_id": "105a7f30-3194-8040-9b3d-d97e08c6bc2a"
},
"children": [
{
"type": "database_row",
"id": "cb2cd5d1-c2e3-4379-bde1-925557877098",
"url": "https://www.notion.so/Row-1-cb2cd5d1c2e34379bde1925557877098",
"title": "Row 1",
"last_modified": "2024-09-25T13:04:00.000Z",
"conversion_timestamp": "2024-09-27T05:03:00.763129+00:00",
"content": {
"html": "<table><tr><th>Tags</th><th>Name</th></tr><tr><td>LoaderPage</td><td>Row 1</td></tr></table><br>",
"markdown": "\n\n| Tags | Name |\n| --- | --- |\n| LoaderPage | Row 1 |\n\n"
},
"depth": 2,
"parent": {
"type": "database_id",
"parent_id": "105a7f30-3194-80af-bd89-fb4e335a851e"
},
"children": []
},
{
"type": "database_row",
"id": "ffc08c2d-fe64-49bb-99c8-3669499c3ee6",
"url": "https://www.notion.so/Row-2-ffc08c2dfe6449bb99c83669499c3ee6",
"title": "Row 2",
"last_modified": "2024-09-18T16:44:00.000Z",
"conversion_timestamp": "2024-09-27T05:03:00.763129+00:00",
"content": {
"html": "<table><tr><th>Tags</th><th>Name</th></tr><tr><td>LoaderPage, Notion</td><td>Row 2</td></tr></table><br>",
"markdown": "\n\n| Tags | Name |\n| --- | --- |\n| LoaderPage, Notion | Row 2 |\n\n"
},
"depth": 2,
"parent": {
"type": "database_id",
"parent_id": "105a7f30-3194-80af-bd89-fb4e335a851e"
},
"children": []
}
]
},
{
"type": "page",
"id": "e96561db-09dc-4cf8-b42c-dfcad966257c",
"url": "https://www.notion.so/My-child-page-e96561db09dc4cf8b42cdfcad966257c",
"title": "My child page",
"last_modified": "2024-09-18T16:45:00.000Z",
"conversion_timestamp": "2024-09-27T05:03:00.763129+00:00",
"content": {
"html": "<p>This is content in my child page. </p><p>This will be formatted to valid <b>HTML and Markdown</b> too by LoaderPage.</p>",
"markdown": "This is content in my child page. \n\nThis will be formatted to valid **HTML and Markdown** too by LoaderPage.\n\n"
},
"depth": 1,
"parent": {
"type": "page_id",
"parent_id": "105a7f30-3194-8040-9b3d-d97e08c6bc2a"
},
"children": []
}
]
}