Skip to content

Authentication

All requests to the LoaderPage API require authentication using the HTTP Authorization header.

API keys

The LoaderPage API uses bearer tokens for authentication. These bearer tokens are the API keys you create on the LoaderPage dashboard.

View the getting started guide for instructions to get your API keys.

Making authenticated requests

To authenticate your request, include your API key in the Authorization header as a bearer token.

Example authenticated 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 YOUR_API_KEY_HERE with your actual LoaderPage API key.

Remember to always keep your API key secure and never share it publicly.