v1

latestOpenAPI 3.1.0MIT License2026-07-13331055.6 KB
filters

Get cards by illustrator

Returns cards by the specified illustrator, with support for filtering, sorting, and pagination

get/illustrators/{illustrator}

Path parameters

illustratorstring required

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

namestring required

The string value this endpoint represents

Example response

{
  "cards": [
    {
      "id": "base1-1",
      "localId": "1",
      "name": "Alakazam"
    }
  ]
}