# Halt Afroawi — 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.

> Browse comprehensive documentation for the halt-rate rate-limiting package and retrieve detailed content from any specific page you need. Quickly find information about all available documentation topics and access complete page details in a single request.

**Category:** Developer Tools | **Website:** [halt.afroawi.com/](https://halt.afroawi.com/) | **Docs:** [parse.bot/marketplace/d8064da9-b8c6-40d6-a07e-8b6a1c1f3b37/halt-afroawi-com-api](https://parse.bot/marketplace/d8064da9-b8c6-40d6-a07e-8b6a1c1f3b37/halt-afroawi-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-halt-afroawi-com-api-d8064da9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_doc_page

Retrieve the full content of a specific halt-rate documentation page by its slug. Returns the page title, description, structured sections with headings and content, extracted code examples, and full text content. Slugs may include path separators for nested pages (e.g. 'storage/redis', 'frameworks/fastapi').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Documentation page slug, e.g. 'introduction', 'algorithms', 'storage/redis', 'frameworks/fastapi'. Obtain valid slugs from list_docs. |

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

### list_docs

List all available documentation pages for the halt-rate package. Returns each page's slug, title, category, and URL. No pagination — the full catalog is returned in a single call (~29 pages).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-halt-afroawi-com-api-d8064da9/list_docs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
