Making Requests
This page outlines how to make requests to the LoaderPage API.
Base URL
All API requests should be made to the following base URL:
https://loaderpage.com/api/v1
Making Requests
To retrieve LLM-friendly Notion content from LoaderPage, make a GET request to the following endpoint:
GET /notion/{notion_id}/full
The full URL for this request would be:
https://loaderpage.com/api/v1/notion/{notion_id}/full
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
notion_id | string | Yes | The unique identifier of the Notion page or database you want to retrieve. |
depth | integer | No | Query parameter specifying how many nested pages to pull. Default is 0 . |
content_format | string | No | Query parameter specifying the desired content format. Options are markdown , html , or both . Default is both . |
Example Request
curl 'https://loaderpage.com/api/v1/notion/{notion_id}/full?depth=1&content_format=markdown' \ -H 'Authorization: Bearer YOUR_API_KEY_HERE'
import requestsurl = 'https://loaderpage.com/api/v1/notion/{notion_id}/full'headers = {'Authorization': 'Bearer YOUR_API_KEY_HERE'}params = { 'depth': 0, 'content_format': 'markdown' }
response = requests.get(url, headers=headers, params=params)print(response.json())
async function fetchNotionData() {const notionId = "YOUR_NOTION_ID";const apiKey = "YOUR_API_KEY_HERE";const url = `https://loaderpage.com/api/v1/notion/${notionId}/full?depth=0&content_format=markdown`;try { const response = await fetch(url, { method: "GET", headers: { Authorization: `Bearer ${apiKey}`, },});
if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); }
const data = await response.json(); console.log(data); // Process your data here return data;} catch (error) { console.error("There was a problem with the fetch operation:", error);}}
fetchNotionData()
Replace {notion_id}
with the actual Notion ID you’re querying, and YOUR_API_KEY_HERE
with your LoaderPage API key.