# Onepiece — 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 One Piece Trading Card Game deck lists and card statistics to discover popular competitive strategies and build optimized decks. Search through detailed deck information to compare card choices and improve your gameplay.

**Category:** Entertainment | **Website:** [onepiece.gg/](https://onepiece.gg/) | **Docs:** [parse.bot/marketplace/c14b790c-66fd-46ea-83ed-a2dcb4a3f9ce/onepiece-gg-api](https://parse.bot/marketplace/c14b790c-66fd-46ea-83ed-a2dcb4a3f9ce/onepiece-gg-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-onepiece-gg-api-c14b790c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_deck_detail

Get comprehensive details for a specific deck including its full card list, description, archetype statistics, and tournament status. The slug identifier is obtained from get_decks results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique slug identifier for the deck (from get_decks results[*].slug). |

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

### get_decks

Get a paginated list of decks with resolved card names and statistics. Results are sorted by date descending. Each deck includes its full card list with resolved names, color composition, archetype info, and metadata. Paginates via integer page number; total may be null.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `format` | string | No | Filter by game format (e.g. OP13, OP12, EB-03). |
| `limit` | integer | No | Number of decks per page. |
| `page` | integer | No | Page number for pagination. |
| `search` | string | No | Search keyword to filter decks by name or content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-onepiece-gg-api-c14b790c/get_decks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"format":"<string>","limit":"<integer>","page":"<integer>","search":"<string>"}'
```
