Loading API reference...
/v1/cards/searchSearch the public Cardmarket Pokemon index by card name, set slug, condition, or grade. Responses include detailed Cardmarket-driven listing aggregates and 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=10Subscription access
Subscribe to get your key, usage dashboard, invoices, and live request console. The examples here use RapidAPI proxy headers.
SubscribeFuzzy 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 10.
Cursor returned by the previous page.
Generated request
curl "https://pokeprice-lab.p.rapidapi.com/v1/cards/search?q=charizard&set=base-set&grade=PSA+10&limit=10" \
-H "Accept: application/json" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: pokeprice-lab.p.rapidapi.com"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": 10,
"next_cursor": "eyJvIjoxMH0",
"has_more": true
}
}