sets
Get all sets
Lists all Pokemon TCG sets with basic information, with support for filtering, sorting, and pagination
get/sets
Query parameters
Filter results by field value.
Supports various operators:
- Default/like: - Laxist equality (contains, case insensitive)
- not:/notlike: - Laxist inequality
- eq: - Strict equality
- neq: - Strict inequality
- gte: - Greater than or equal (numbers)
- lte: - Less than or equal (numbers)
- gt: - Greater than (numbers)
- lt: - Less than (numbers)
- null: - Field is null
- notnull: - Field is not null
- Multiple values with | (e.g., name=eq:Furret|Pikachu)
Field to sort results by (overrides default sorting)
Order to sort results (ASC or DESC)
Page number for paginated results
Number of items per page (applied when pagination:page is used)
Response
Successful request
Example response
[
{
"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
}
}
]