v1

latestOpenAPI 3.1.0MIT License2026-07-13331055.6 KB
sets

Find set by ID

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

get/sets/{set}

Path parameters

setstring required

ID of set to return

Response

Successful request

idstring required

Unique identifier of the set

namestring required

Name of the set

logostring

URL to the logo of the set

releaseDatestring date required

Official release date of the set

Example response

{
  "id": "base1",
  "name": "Base Set",
  "logo": "https://assets.tcgdex.net/en/base/base1/logo",
  "boosters": [
    {
      "id": "boo_A1-mewtwo",
      "name": "Mewtwo",
      "logo": "https://assets.tcgdex.net/en/tcgp/A1/boosters/mewtwo-logo",
      "artwork_front": "https://assets.tcgdex.net/en/tcgp/A1/boosters/mewtwo-front",
      "artwork_back": "https://assets.tcgdex.net/en/tcgp/A1/boosters/mewtwo-front"
    },
    {
      "id": "boo_A1-pikachu",
      "name": "Pikachu"
    }
  ],
  "legal": {
    "expanded": true
  },
  "abbreviation": {
    "official": "BS",
    "localized": "BS"
  },
  "cardCount": {
    "total": 101,
    "official": 100
  },
  "cards": [
    {
      "id": "base1-1",
      "localId": "1",
      "name": "Alakazam"
    }
  ]
}