v1

latestOpenAPI 3.1.0MIT License2026-07-13331055.6 KB
series

Find series by ID

Returns detailed information about a specific series, including all sets in that series

get/series/{serie}

Path parameters

seriestring required

ID of serie to return

Response

Successful request

idstring required

Unique identifier of the series

namestring required

Name of the series

logostring

URL to the logo of the series

releaseDatestring date required

Release date of the series

Example response

{
  "firstSet": {
    "id": "base1",
    "name": "Base Set",
    "logo": "https://assets.tcgdex.net/en/base/base1/logo",
    "symbol": "https://assets.tcgdex.net/univ/base/base1/symbol",
    "cardCount": {
      "total": 101,
      "official": 100
    }
  },
  "lastSet": {
    "id": "base1",
    "name": "Base Set",
    "logo": "https://assets.tcgdex.net/en/base/base1/logo",
    "symbol": "https://assets.tcgdex.net/univ/base/base1/symbol",
    "cardCount": {
      "total": 101,
      "official": 100
    }
  },
  "sets": [
    {
      "id": "base1",
      "name": "Base Set",
      "logo": "https://assets.tcgdex.net/en/base/base1/logo",
      "symbol": "https://assets.tcgdex.net/univ/base/base1/symbol",
      "cardCount": {
        "total": 101,
        "official": 100
      }
    }
  ]
}