# Pokemontcg — 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 browse detailed information about Pokémon Trading Card Game cards and sets, including card types, rarities, and supertypes. Filter cards by set, rarity, and attributes to find exactly what you're looking for in the TCG database.

**Category:** Entertainment | **Website:** [pokemontcg.com/](https://pokemontcg.com/) | **Docs:** [parse.bot/marketplace/b4676ca3-d056-4b73-8092-40f3acf9e4c7/pokemontcg-com-api](https://parse.bot/marketplace/b4676ca3-d056-4b73-8092-40f3acf9e4c7/pokemontcg-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-pokemontcg-com-api-b4676ca3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_card

Get details for a specific Pokémon TCG card by ID. Returns card name, HP, supertype, subtypes, image URL, set name, and rarity. The card ID follows the format expansion-number (e.g. base1-4, swsh4-25).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `card_id` | string | Yes | Card ID in format expansion-number (e.g. base1-4, sv1-1, swsh4-25). |

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

### get_rarities

Get all possible Pokémon TCG card rarities. Returns a static list of rarity strings.

**Estimated cost:** Metered

_No parameters required._

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

### get_set

Get details for a specific Pokémon TCG set/expansion by ID. Returns the set name, total card count, list of cards in the set, and logo URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `set_id` | string | Yes | Set ID (e.g. base1, sv1, swsh1, me3). |

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

### get_subtypes

Get all possible Pokémon TCG card subtypes. Returns a static list of subtype strings.

**Estimated cost:** Metered

_No parameters required._

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

### get_supertypes

Get all possible Pokémon TCG card supertypes (Pokémon, Trainer, Energy).

**Estimated cost:** Metered

_No parameters required._

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

### get_types

Get all possible Pokémon TCG card energy types. Returns a static list of energy type strings.

**Estimated cost:** Metered

_No parameters required._

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

### search_cards

Search for Pokémon TCG cards by name or keyword. Returns paginated results with card IDs, names, set names, and prices when available. Omitting the query returns all cards.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search query for card name (e.g. 'charizard', 'pikachu'). Omitting returns all cards. |

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

### search_sets

List all Pokémon TCG sets/expansions, optionally filtered by name. Returns set IDs, names, release dates, and URLs. All sets are returned on a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (currently all sets are returned on one page). |
| `query` | string | No | Filter sets by name (case-insensitive substring match). Omitting returns all sets. |

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