Everything you need to start using the TCG Price Lookup API.
Base URL
https://api.tcgpricelookup.com/v1Create a free account to get your API key. No credit card required.
Include your API key in the X-API-Key header of every request.
curl "https://api.tcgpricelookup.com/v1/cards/search?q=charizard&game=pokemon" \
-H "X-API-Key: YOUR_API_KEY"All list endpoints return a consistent envelope with a data array and pagination fields. Use limit and offset query parameters to paginate through results.
{
"data": [
{
"id": "019535a1-d5d0-7c12-a3e8-b7f4c6d8e9a2",
"name": "Charizard ex",
"game": "pokemon",
"set_name": "Obsidian Flames",
"rarity": "Double Rare",
"prices": {
"raw": {
"near_mint": {
"tcgplayer": { "market": 48.97 },
"ebay": { "avg_7d": 50.75 }
}
}
}
}
],
"total": 47,
"limit": 20,
"offset": 0
}