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

> Discover and explore thousands of public services in the Zapi catalog by browsing categories or searching keywords, then access complete technical documentation with endpoints, parameters, and sample responses for any service you're interested in. Get everything you need to integrate new functionality into your applications without building from scratch.

**Category:** Developer Tools | **Website:** [zpi.web.id/](https://zpi.web.id/) | **Docs:** [parse.bot/marketplace/e23312ab-e81e-4559-96c0-3294deee2feb/zpi-web-id-api](https://parse.bot/marketplace/e23312ab-e81e-4559-96c0-3294deee2feb/zpi-web-id-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-zpi-web-id-api-e23312ab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_api_details

Get detailed information about a specific API by its slug, including all its endpoints with parameter schemas and example responses. The slug is obtained from list_apis results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The API slug identifier (e.g. 'tradingview', 'tiktok-scraper'). Obtained from list_apis results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zpi-web-id-api-e23312ab/get_api_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_apis

List and search available APIs in the Zapi catalog. Supports keyword search, category filtering, and cursor-based pagination. Returns API summaries ordered by popularity. Each page returns up to `limit` items; pass `next_cursor` from the response as `cursor` to fetch the next page. When `next_cursor` is null, there are no more pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter APIs (e.g. 'finance', 'social-media', 'autocomplete'). Omitting returns all categories. |
| `cursor` | string | No | Pagination cursor from a previous response's next_cursor field. Omit for the first page. |
| `limit` | integer | No | Maximum number of items to return per page. |
| `q` | string | No | Keyword search query to filter APIs by name or tags (e.g. 'tiktok', 'finance'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zpi-web-id-api-e23312ab/list_apis \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","cursor":"<string>","limit":"<integer>","q":"<string>"}'
```
