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

> Access data from parsepad.com.

**Category:** Developer Tools | **Website:** [parsepad.com/](https://parsepad.com/) | **Docs:** [parse.bot/marketplace/74df0bb7-af94-47cd-b138-4c88eaf61102/parsepad-com-api](https://parse.bot/marketplace/74df0bb7-af94-47cd-b138-4c88eaf61102/parsepad-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-parsepad-com-api-74df0bb7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_tool

Get a tool's technical manifest by its slug. Returns runtime metadata including module path, template path, dependencies, features, UI mode, and complexity tier.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Tool slug identifier (e.g. 'json-formater-test', 'csharp-compiler', 'bot-score'). Obtain from list_tools or search_tools results. |

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

### list_tools

List all available tools in the Parsepad catalog. Returns tool metadata including title, description, category, and type. Optionally filter by category key. Results are not paginated — the full catalog is returned in a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter tools by category key. When omitted, all tools are returned. Accepted values: network, online-compiler, productivity, finance, data, developer, business, utilities, marketing. |

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

### search_tools

Full-text search over tools by name, format, or task. Returns paginated results with faceted category and tool-type breakdowns. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | Yes | Search query matching tool names, descriptions, and keywords (e.g. 'json', 'compiler', 'network'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-parsepad-com-api-74df0bb7/search_tools \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
