Get an expansion

GET /api/v1/azuki/expansions/{id} read:catalog 1 credit

Fetch a single expansion by id: name, series, card counts, release date and artwork. Use it to render a set header before paging its cards.

Try it GET /api/v1/azuki/expansions/sv3pt5

These inputs are shared across all docs pages, so an id entered here carries over.

response
200 11ms preloaded server-side with the default context
object · 2 keys
{
  "success": true,
  "data": {
    "id": "azk-01",
    "name": "Gates Awakened",
    "total": 154,
    "language": "English",
    "language_code": "en",
    "series": "Azuki TCG",
    "code": "AZK-01",
    "printed_total": 129,
    "release_date": "2026/06/29",
    "logo": "https://tcg.azuki.com/azuki_tcg_logo.svg",
    "symbol": "https://tcg.azuki.com/azuki_tcg_logo.svg"
  }
}
tracks the inputs above
curl -X GET 'https://service.rip.fun/api/v1/azuki/expansions/sv3pt5' \
  -H 'X-API-Key: rip_…'

Response fields (data)

FieldDescription
data.id / name / series / codeExpansion identity
data.total / printed_totalCard counts (incl. secret rares vs printed)
data.language / language_codeCanonicalized language + ISO code
data.release_dateRelease date, `YYYY/MM/DD`
data.logo / symbolArtwork URLs
data.translationEnglish name under `translation.en.name` for non-English sets

Errors

StatusCodeWhen
404not_foundno 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.