# Nuxt — 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.

> Query Nuxt documentation to access detailed information about components, composables, utilities, and commands directly in your application. Retrieve structured reference content from specific documentation pages to integrate Nuxt knowledge into your development workflow.

**Category:** Developer Tools | **Website:** [www.nuxt.com/](https://www.nuxt.com/) | **Docs:** [parse.bot/marketplace/d5258ceb-fbe4-4c80-ad22-294707848217/nuxt-com-api](https://parse.bot/marketplace/d5258ceb-fbe4-4c80-ad22-294707848217/nuxt-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-nuxt-com-api-d5258ceb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_doc_page

Retrieves the full content of a specific Nuxt documentation page by path. Returns the page title, description, structured sections with headings, and full text content (capped at 15,000 characters). The path should be obtained from list_api_reference or known documentation URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | Yes | Documentation page path, e.g. /docs/4.x/api/composables/use-fetch. Paths from list_api_reference can be used directly. |

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

### list_api_reference

Lists all Nuxt API reference documentation entries (components, composables, utils, commands, kit, advanced), optionally filtered by category. Returns the title and path for each entry. One request to the Nuxt docs index page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter results to a specific API category. When omitted, returns all entries across all categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nuxt-com-api-d5258ceb/list_api_reference \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
