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

# Find series by ID

`GET /series/{serie}`

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

## Path parameters

- `serie` string, required

## Response `200`

Successful request

- Serie — Detailed information about a Pokemon TCG series, including all sets within the series
  - `id` string, required — Unique identifier of the series
  - `name` string, required — Name of the series
  - `logo` string — URL to the logo of the series
  - `releaseDate` string, date, required — Release date of the series
  - `firstSet` SetResume, required — Basic information about a Pokemon TCG set
    - `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` string — URL to the set symbol
    - `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
  - `lastSet` SetResume, required — Basic information about a Pokemon TCG set
    - `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` string — URL to the set symbol
    - `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
  - `sets` SetResume[], required — All sets contained in this series
    - `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` string — URL to the set symbol
    - `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

## 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)
