# Japan Toreca — 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.

> Browse and discover available trading card pack listings from Japan Toreca Center's online lottery platform. Find current oripa offerings and stay updated on new card pack opportunities available for purchase.

**Category:** Marketplaces | **Website:** [japan-toreca.com/](https://japan-toreca.com/) | **Docs:** [parse.bot/marketplace/b0e362bd-43ba-4d57-9140-3eb053db62b0/japan-toreca-com-api](https://parse.bot/marketplace/b0e362bd-43ba-4d57-9140-3eb053db62b0/japan-toreca-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-japan-toreca-com-api-b0e362bd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_packs

List trading card packs (oripa lotteries) available on Japan Toreca Center. Returns all currently available packs for the specified category with their pricing, availability, and tag metadata. Results are returned in a single page ordered by the platform's default recommendation or specified sort.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Trading card game category to filter packs by. |
| `include_soldout` | string | No | Whether to include sold-out packs. Accepts 'true' or 'false'. |
| `sort_by` | string | No | Sort order for results. Empty string uses platform default (recommended). Other values are forwarded to the API. |
| `tag` | string | No | Filter by tag type (e.g. 'few', 'new', 'login_bonus', 'psa_10', 'box', '319', 'fifty_fifty', 'advanced', 'intermediate', 'beginners'). Empty string returns all. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-japan-toreca-com-api-b0e362bd/list_packs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","include_soldout":"<string>","sort_by":"<string>","tag":"<string>"}'
```
