Skip to content
pokemontcgapi.com
Documentation

Artist

An illustrator, with a maintained count of the cards they drew.

object3 fields

Deliberately small. card_count is denormalised and maintained by the importers, because recomputing it on read is a GROUP BY across the whole catalogue for a number that changes once a day.

399 artists are credited across the catalogue today.

Fields

Artist fields
FieldTypeNullDescription
slugstringnoStable identifier used by /v1/artists/{slug}. Not free text — "Mitsuhiro Arita" is not a slug.
namestringnoName as credited on the card.
card_countintegernoCards currently attributed to this artist.

Example

artist.json
{ "slug": "mitsuhiro-arita", "name": "Mitsuhiro Arita", "card_count": 760 }

Getting the cards

There is no /v1/artists/{slug}/cards. Search instead, so you get the same filtering, sorting and paging as everywhere else:

GET /v1/cards?q=artist:"Mitsuhiro Arita"&orderBy=-index_eur

view this page as markdown