API_Reference

Documentation

Complete API reference for accessing Pokemon card pricing data.

Base URL: api.poketrace.com/v1 · Auth: X-API-Key · Free: 500/day (US, Raw) · Pro: 5k/day (+ EU, Graded) · Scale: 20k/day

Quick Start

Get up and running with the PokeTrace API in under 5 minutes. Access real-time pricing data for over 50,000 Pokemon cards including PSA, BGS, and CGC graded values from US and EU markets. Check API status at status.poketrace.com.

01

Get API Key

Sign up and create a key in the dashboard

02

Add Header

Include X-API-Key in requests

03

Query Data

Access cards, sets, and pricing

quick_start
# Get your API key from the dashboard
# Then use your key to query cards
curl -H "X-API-Key: YOUR_KEY" \
  https://api.poketrace.com/v1/cards/019bff77-befa-771d-bab0-f5909f0a78c9
Response 200 OK
// US Card Example
{
"data": {
"id": "019bff77-befa-771d-bab0-f5909f0a78c9",
"name": "Charizard ex",
"cardNumber": "101/108",
"set": { "slug": "obsidian-flames", "name": "Obsidian Flames" },
"variant": "Holofoil",
"rarity": "Ultra Rare",
"market": "US",
"currency": "USD",
"refs": { "tcgplayerId": "123456", "cardmarketId": null },
"prices": {
"ebay": {
"PSA_10": { "avg": 1250, "low": 1180, "high": 1320, "saleCount": 12, "avg1d": 1240, "avg7d": 1220, "avg30d": 1180 },
"NEAR_MINT": { "avg": 180, "low": 150, "high": 220, "saleCount": 45, "avg1d": 178, "avg7d": 175, "avg30d": 170 }
},
"tcgplayer": {
"NEAR_MINT": { "avg": 165, "low": 140, "high": 195, "saleCount": 89, "avg1d": 162, "avg7d": 160, "avg30d": 155 }
}
},
"gradedOptions": ["PSA_10", "PSA_9", "CGC_9_5"],
"conditionOptions": ["NEAR_MINT", "LIGHTLY_PLAYED"],
"topPrice": 1250,
"totalSaleCount": 146,
"hasGraded": true,
"lastUpdated": "2026-01-29T12:00:00Z"
}
}
 
// EU Card Example
{
"data": {
"id": "eu_273550",
"name": "Charizard ex",
"cardNumber": "101/108",
"set": { "slug": "obsidian-flames", "name": "Obsidian Flames" },
"rarity": "Ultra Rare",
"market": "EU",
"currency": "EUR",
"refs": { "tcgplayerId": null, "cardmarketId": "273550" },
"prices": {
"cardmarket": { "avg": 145, "avg1d": 142, "avg7d": 140, "avg30d": 138 },
"cardmarket_unsold": {
"PSA_10": { "avg": 980, "low": 850, "high": 1200, "saleCount": 8, "country": { "DE": { "avg": 950 }, "FR": { "avg": 1020 } } },
"NEAR_MINT": { "avg": 165, "low": 120, "high": 280, "saleCount": 95, "country": { "DE": { "avg": 155 }, "FR": { "avg": 175 }, "IT": { "avg": 160 } } }
}
},
"gradedOptions": ["PSA_10", "CGC_9_5"],
"conditionOptions": ["NEAR_MINT", "EXCELLENT"],
"topPrice": 980,
"totalSaleCount": 103,
"hasGraded": true,
"lastUpdated": "2026-01-29T12:00:00Z"
}
}