Loading API reference...
/v1/cards/searchSearch the public Pokemon European index by card name, set slug, condition, or grade. This is the same normalized catalog layer that powers the overview and catalog pages.
Resolved path
/v1/cards/search?q=charizard&set=base-set&grade=PSA+10&limit=20API key
Loading account session…
Fuzzy card-name query.
Set slug filter.
Optional listing language filter.
Raw listing condition filter.
Grade filter such as RAW, PSA 10, BGS 9.5, CGC 10.
Cursor page size, capped at 100.
Cursor returned by the previous page.
Generated request
curl "https://api.pokepricelab.com/api/v1/cards/search?q=charizard&set=base-set&grade=PSA+10&limit=20" \
-H "Accept: application/json" \
-H "X-API-Key: YOUR_API_KEY"Response
{
"data": [
{
"id": "019daab5-4998-71c9-a088-60163b2d6a35",
"slug": "charizard-base-set-4",
"name": "Charizard",
"card_number": "4/102",
"rarity": "Holo Rare",
"image_url": "https://cdn.pokepricelab.com/cards/base-set/charizard-4.webp",
"set": {
"slug": "base-set",
"name": "Base Set"
},
"market": {
"currency": "EUR",
"sold": {
"avg": 385,
"avg7d": 375,
"avg30d": 370
},
"listings": {
"language": "ALL",
"low": 350,
"avg": 420,
"high": 890,
"population": 126
},
"graded_access": true
},
"prices": {
"currency": "EUR",
"sold": {
"current": 385,
"avg": 385,
"avg1d": 380,
"avg7d": 375,
"avg30d": 370,
"population": 126
},
"listings": {
"low": 350,
"high": 890,
"avg": 420,
"population": 126
}
}
}
],
"total": 1,
"page": {
"limit": 20,
"next_cursor": "eyJvIjoyMH0",
"has_more": true
}
}