Integrate real-time Pokemon card prices from multiple marketplaces into your applications with our developer-friendly API. Access price history, card details, and graded card values.
Seamlessly integrate real-time Pokémon card pricing data into your applications, websites, and tools.
Access pricing from TCGPlayer, eBay, and CardMarket with filtering by set, name, and card number.
GET https://www.pokemonpricetracker.com/api/v1/prices?setId=base1&name=charizard
Retrieve complete set information with customizable sorting and filtering options.
GET https://www.pokemonpricetracker.com/api/v1/sets?sortBy=releaseDate&sortOrder=desc
Compare prices between raw and PSA graded cards with detailed grade-specific data.
GET https://www.pokemonpricetracker.com/api/v1/prices?id=base1-4&includeGraded=true
Up to 20,000 API calls per day with our API plan and 60 requests per minute throughput.
X-API-Key: pokeprice_pro_YOUR_API_KEY
Sign up for an account and subscribe to one of our API plans to receive your API key.
// Example: Fetch price data for Base Set Charizard
const apiKey = 'YOUR_API_KEY';
const response = await fetch('https://api.pokemonpricetracker.com/v1/prices?setId=base1&number=4', {
headers: {
'X-API-Key': apiKey
}
});
const data = await response.json();
console.log(data);
// Example response
{
"card": {
"id": "base1-4",
"name": "Charizard",
"number": "4",
"rarity": "Rare Holo",
"setName": "Base Set",
"setId": "base1",
"imageUrl": "https://images.pokemontcg.io/base1/4.png"
},
"prices": {
"tcgplayer": {
"market": 399.99,
"low": 275.00,
"mid": 375.00,
"high": 575.00,
"lastUpdated": "2023-06-15T12:30:45Z"
},
"ebay": {
"average": 405.75,
"low": 269.99,
"high": 599.99,
"lastUpdated": "2023-06-15T14:22:10Z"
},
"cardmarket": {
"average": 352.45,
"low": 249.50,
"trend": 370.25,
"lastUpdated": "2023-06-15T10:15:30Z"
}
},
"gradedPrices": {
"psa10": 15750.00,
"psa9": 1850.00,
"psa8": 750.00,
"psa7": 425.00
}
}
Retrieve current prices for specific cards with filtering options.
GET /v1/prices?setId=base1&number=4
Get historical price data with customizable date ranges.
GET /v1/prices/history?id=base1-4&period=30d
List all Pokemon card sets with detailed information.
GET /v1/sets?sortBy=releaseDate
Search for cards with powerful filtering options.
GET /v1/cards?q=charizard&rarity=holo
For developers and collectors
For businesses and power users
Join thousands of collectors using our powerful tools to track market trends, analyze PSA grades, and make profitable trading decisions. Your competitive edge in Pokémon card collecting starts here.
No credit card required. Free plan includes essential tracking features.