/api/v1/onepiece/expansions/{id} read:catalog 1
creditFetch a single expansion by id: name, series, card counts, release date and artwork. Use it to render a set header before paging its cards.
GET /api/v1/onepiece/expansions/sv3pt5 These inputs are shared across all docs pages, so an id entered here carries over.
{
"success": true,
"data": {
"id": "OP01",
"name": "Romance Dawn",
"total": 121,
"language": "English",
"language_code": "en",
"series": "One Piece",
"code": "OP01",
"printed_total": 121,
"release_date": "2022/12/02",
"logo": "https://api.rip.fun/storage/v1/object/public/tcg/sets/OP01.logo.png"
}
}curl -X GET 'https://service.rip.fun/api/v1/onepiece/expansions/sv3pt5' \ -H 'X-API-Key: rip_…'
data)| Field | Description |
|---|---|
data.id / name / series / code | Expansion identity |
data.total / printed_total | Card counts (incl. secret rares vs printed) |
data.language / language_code | Canonicalized language + ISO code |
data.release_date | Release date, `YYYY/MM/DD` |
data.logo / symbol | Artwork URLs |
data.translation | English name under `translation.en.name` for non-English sets |
| Status | Code | When |
|---|---|---|
| 404 | not_found | no such object for this game (a Pokémon id on `/onepiece` is "not found") |
See Errors for the response envelope and the full code list.