# Quickref — 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 retrieve quick reference guides for hundreds of developer tools, languages, and frameworks from quickref.me. Browse all available cheatsheets, search by keyword, or fetch full content for any topic to instantly access the commands, syntax, and usage notes you need.

**Category:** Developer Tools | **Website:** [quickref.me/](https://quickref.me/) | **Docs:** [parse.bot/marketplace/629e22ba-a0a4-460f-896d-fa4c7b0b261e/quickref-me-api](https://parse.bot/marketplace/629e22ba-a0a4-460f-896d-fa4c7b0b261e/quickref-me-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-quickref-me-api-629e22ba/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cheatsheet

Retrieve detailed cheatsheet content for a specific technology. Returns commands, syntax, examples, and usage notes organized into titled sections, each with subsections containing typed content blocks (code, text, list, table). The slug must match an entry from list_cheatsheets or search_cheatsheets.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The technology slug identifier (e.g. 'bash', 'python', 'docker', 'git', 'vim'). Use list_cheatsheets or search_cheatsheets to discover available slugs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickref-me-api-629e22ba/get_cheatsheet \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_cheatsheets

Get all available technology cheatsheets from quickref.me. Returns metadata for every cheatsheet including title, slug, intro, categories, and tags. No pagination — the full catalog is returned in one response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickref-me-api-629e22ba/list_cheatsheets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_cheatsheets

Search for technology cheatsheets by keyword. Matches against title, slug, and tags. Returns matching cheatsheet metadata. An unmatched query returns an empty results array with count 0.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Keyword to search for, matched against cheatsheet title, slug, and tags (e.g. 'python', 'docker', 'bash') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quickref-me-api-629e22ba/search_cheatsheets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
