Real-time Pokemon card prices, graded values, and market data.
TCGPlayer market prices, eBay sold averages, PSA / BGS / CGC graded comps, and daily price history — for every
Pokemon card ever printed.
PokeTrace is dedicated entirely to the Pokemon TCG — deeper data, Pokemon-specific features, and a collector-first experience.
| 🎴 Every Pokemon card | English + Japanese, every set, every variant |
| 💰 Real prices | TCGPlayer market + eBay actual sold listings |
| 🎓 Graded comps | PSA, BGS, CGC, SGC, ACE, TAG — every grade |
| 📈 Price history | Daily price tracking up to 1 year |
| 📊 Market movers | Top gainers & losers, updated daily |
| 📦 Official SDK | TypeScript / JavaScript — npm |
npm install @poketrace/sdk
import { PokeTrace } from "@poketrace/sdk";
const client = new PokeTrace({ apiKey: "pc_your_api_key" });
const cards = await client.cards.list({
search: "Charizard",
has_graded: true,
});
for (const card of cards.data) {
console.log(card.name, card.prices);
}See the full SDK documentation at https://github.com/PokeTrace/sdk.
Real-time Pokemon card prices for collectors, traders, and developers.