Japan Toreca APIjapan-toreca.com ↗
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.
curl -X GET 'https://api.parse.bot/scraper/6587314d-f9e9-4606-a3c8-d8562dc767cf/list_packs?category=pokemon&include_soldout=false' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace japan-toreca-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: japan_toreca_com_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.japan_toreca_com_api import JapanToreca, Category, InvalidInput
client = JapanToreca()
# List Pokemon packs with default settings
for pack in client.packs.list(category=Category.POKEMON, limit=3):
print(pack.title, pack.price, pack.left_cards, pack.total_cards)
# Fetch One Piece packs including sold-out ones
for pack in client.packs.list(category=Category.ONEPIECE, include_soldout="true", limit=3):
print(pack.title, pack.is_sold_out, pack.like_count)
# Handle invalid input
try:
result = client.packs.list(category=Category.POKEMON, include_soldout="invalid", limit=1).first()
except InvalidInput as e:
print("invalid input:", e)
print("exercised: packs.list")
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.
| Param | Type | Description |
|---|---|---|
| tag | string | Filter by tag type (e.g. 'few', 'new', 'login_bonus', 'psa_10', 'box', '319', 'fifty_fifty', 'advanced', 'intermediate', 'beginners'). Empty string returns all. |
| sort_by | string | Sort order for results. Empty string uses platform default (recommended). Other values are forwarded to the API. |
| category | string | Trading card game category to filter packs by. |
| include_soldout | string | Whether to include sold-out packs. Accepts 'true' or 'false'. |
{
"type": "object",
"fields": {
"packs": "array of pack objects with id, title, category, price, tags, availability",
"total": "integer count of packs returned"
},
"sample": {
"data": {
"packs": [
{
"id": 92287,
"tags": [
{
"name": "新規登録者限定",
"type": "new_user_only",
"name_en": "New user exclusive"
},
{
"name": "新着",
"type": "new",
"name_en": "New"
}
],
"price": 1,
"title": "新規登録から7日間限定 Platinum Legacy!!",
"sale_to": "2100-01-01T00:00:00Z",
"category": "pokemon",
"sale_from": "2026-07-30T17:10:01+09:00",
"left_cards": 6,
"like_count": 1,
"is_sold_out": false,
"total_cards": 10,
"display_price": "1",
"payment_method": "coin",
"header_image_url": "https://japan-toreca-strapi.imgix.net/20260702_Premium_Challenge_X_85b3e94c53.jpg?auto=format%2Ccompress",
"recent_user_count": 4,
"minimum_exchange_point": 1000
}
],
"total": 161
},
"status": "success"
}
}About the Japan Toreca API
The Japan Toreca API on Parse exposes 1 endpoint for the publicly available data on japan-toreca.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.