# Developers Notion — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse Notion's developer documentation to find specific pages and retrieve their full content in markdown format. Access comprehensive information about Notion's capabilities by listing available pages or looking up individual documentation entries.

**Category:** Developer Tools | **Website:** [developers.notion.com/](https://developers.notion.com/) | **Docs:** [parse.bot/marketplace/f3305bd5-4895-4339-8d82-f3c4bdb9e867/developers-notion-com-api](https://parse.bot/marketplace/f3305bd5-4895-4339-8d82-f3c4bdb9e867/developers-notion-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-developers-notion-com-api-f3305bd5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_page

Fetches a single documentation page as markdown by its path. The path corresponds to the page location in the docs hierarchy. Use list_pages or search_docs to discover valid paths.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | Yes | Documentation page path without leading slash or .md suffix (e.g. 'reference/retrieve-a-page', 'guides/get-started/overview'). Discover paths via list_pages or search_docs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developers-notion-com-api-f3305bd5/get_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"path":"<string>"}'
```

### list_pages

Retrieves the full documentation index with every page in the Notion developer docs including title, path, URL, and description. Results are returned as a single list; use get_page with a returned path to fetch full content.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developers-notion-com-api-f3305bd5/list_pages \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_docs

Full-text search across the Notion developer documentation. Returns ranked results with title, path, section heading, content preview, breadcrumbs, relevance score, and OpenAPI operation string when the result is an endpoint reference. Use the returned path with get_page to fetch full content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query string (e.g. 'pagination', 'create a page', 'database query'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developers-notion-com-api-f3305bd5/search_docs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
