v1

latestOpenAPI 3.1.0MIT License2026-07-13331055.6 KB
cards

fetch the list of cards

Returns a list of all cards, with support for filtering, sorting, and pagination

get/cards

Query parameters

object
OR
{"stackTrail":"components:parameters:filter:schema:oneOf:1","oasType":"schema","type":"unknown"}

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)
string
OR
{"stackTrail":"components:parameters:sortField:schema:oneOf:1","oasType":"schema","type":"unknown"}

Field to sort results by (overrides default sorting)

'ASC' | 'DESC'
OR
'ASC' | 'DESC'

Order to sort results (ASC or DESC)

integer
OR
{"stackTrail":"components:parameters:paginationPage:schema:oneOf:1","oasType":"schema","type":"unknown"}

Page number for paginated results

integer
OR
{"stackTrail":"components:parameters:paginationItemsPerPage:schema:oneOf:1","oasType":"schema","type":"unknown"}

Number of items per page (applied when pagination:page is used)

Response

Successful request

idstring required

Unique identifier of the card

localIdstring required

Card number within its set

namestring required

Name of the card (including any suffix)

Example response

[
  {
    "id": "base1-1",
    "localId": "1",
    "name": "Alakazam"
  }
]
All 33 operations