# Patreon — 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 for Patreon creators and discover their membership tiers, pricing, patron counts, and detailed profile information. Find the creators you want to support or research with comprehensive details about their offerings and community size.

**Category:** Social Media | **Website:** [www.patreon.com/](https://www.patreon.com/) | **Docs:** [parse.bot/marketplace/c566e1eb-f157-46a9-b34b-08feb3c0602f/patreon-com-api](https://parse.bot/marketplace/c566e1eb-f157-46a9-b34b-08feb3c0602f/patreon-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-patreon-com-api-c566e1eb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_creator_details

Fetch full campaign details for a single Patreon creator by campaign_id. Returns membership tiers with pricing, patron/paid-member counts, social connections, and campaign metadata. The campaign_id is obtained from search_creators results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `campaign_id` | string | Yes | Campaign ID from search_creators results[*].campaign_id |

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

### search_creators

Full-text search over Patreon creators by keyword. Returns campaign summaries including patron counts, post counts, and campaign IDs. Each result carries a campaign_id usable with get_creator_details for full tier/pricing data. Paginated server-side; results are ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `page` | integer | No | Page number (1-indexed) |
| `query` | string | Yes | Search keyword to find creators |

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