---
title: "Get all sets"
method: GET
path: "/sets"
tags: ["sets"]
---

# Get all sets

`GET /sets`

Lists all Pokemon TCG sets with basic information, with support for filtering, sorting, and pagination

## Query parameters

- `filters` union
  - object
  - unknown
- `sort:field` union
  - string
  - unknown
- `sort:order` union
  - 'ASC' | 'DESC'
  - 'ASC' | 'DESC'
- `pagination:page` union
  - integer
  - unknown
- `pagination:itemsPerPage` union
  - integer
  - unknown

## Response `200`

Successful request

- SetResume[]
  - `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
- `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)
