---
title: "Find set by ID"
method: GET
path: "/sets/{set}"
tags: ["sets"]
---

# Find set by ID

`GET /sets/{set}`

Returns detailed information about a specific set, including its card list

## Path parameters

- `set` string, required

## Response `200`

Successful request

- Set — Detailed information about a Pokemon TCG set, including card lists and metadata
  - `id` string, required — Unique identifier of the set
  - `name` string, required — Name of the set
  - `logo` string — URL to the logo of the set
  - `symbol` union — URL to the set symbol
    - string
    - unknown
  - `serie` SerieResume, required — Basic information about a Pokemon TCG series
    - `id` string, required — Unique identifier of the series
    - `name` string, required — Name of the series
    - `logo` union — URL to the logo of the series
      - string
      - unknown
  - `tcgOnline` union — Identifier for this set in Pokemon TCG Online
    - string
    - unknown
  - `releaseDate` string, date, required — Official release date of the set
  - `variants` object — Indicates which card variants exist in this set
    - `normal` union — Indicates whether normal variants exist
      - boolean
      - unknown
    - `reverse` union — Indicates whether reverse holo variants exist
      - boolean
      - unknown
    - `holo` union — Indicates whether holo variants exist
      - boolean
      - unknown
    - `firstEdition` union — Indicates whether first edition variants exist
      - boolean
      - unknown
    - `wPromo` union — Indicates whether promotional variants exist
      - boolean
      - unknown
  - `boosters` Booster[] — The booster packs available in this set
    - `id` string, required — The booster ID using format boo_<set_id>-<booster_name>
    - `name` string, required — The name of the booster
    - `logo` union — URL to the logo of the booster
      - string
      - unknown
    - `artwork_front` union — URL to the front artwork of the booster pack
      - string
      - unknown
    - `artwork_back` union — URL to the back artwork of the booster pack
      - string
      - unknown
  - `legal` object, required — Information about tournament legality of this set
    - `standard` boolean, required — Indicates whether this set is legal in standard format tournaments
    - `expanded` boolean, required — Indicates whether this set is legal in expanded format tournaments
  - `abbreviation` object — Common abbreviations used for this set
    - `official` string — The official abbreviation used by Pokemon Company
    - `localized` string — Localized abbreviation used in the current language
  - `cardCount` object, required — Statistics about the number of cards in this set
    - `total` number, required — Total number of cards in the set including variants
    - `official` number, required — Number of cards officially numbered in the set
    - `normal` number — Number of cards having a normal variant
    - `reverse` number — Number of cards having a reverse holo variant
    - `holo` number — Number of cards having a holographic variant
    - `firstEd` union — Number of cards having a first edition variant
      - number
      - unknown
  - `cards` CardResume[], required — List of all cards in this set
    - `id` string, required — Unique identifier of the card
    - `localId` string, required — Card number within its set
    - `image` union — URL to the card image
      - string
      - unknown
    - `name` string, required — Name of the card (including any suffix)

## Other responses

- `400` — The request was invalid
- `404` — The specified resource was not found
- `500` — An unexpected error occurred on the server

---

[API](https://skmtc.dev/tcgdex/apis/tcgdex-api.md) · [All operations](https://skmtc.dev/tcgdex/apis/tcgdex-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tcgdex/tcgdex-api/revisions/cc386057cff5/schema)
