Skip to content

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

ParameterTypeRequiredDescription
notion_idstringYesThe unique identifier of the Notion page or database you want to retrieve.
depthintegerNoQuery parameter specifying how many nested pages to pull. Default is 0.
content_formatstringNoQuery parameter specifying the desired content format. Options are markdown, html, or both. Default is both.

Example Request

Terminal window
curl 'https://loaderpage.com/api/v1/notion/{notion_id}/full?depth=1&content_format=markdown' \
-H 'Authorization: Bearer YOUR_API_KEY_HERE'

Replace {notion_id} with the actual Notion ID you’re querying, and YOUR_API_KEY_HERE with your LoaderPage API key.