Pokémon TCG
Query Pokémon trading-card data — sets, cards, prices, and images
Search the Pokémon Trading Card Game catalog by card, set, type, and more, with images and market prices attached. It works without a key at a lower rate limit; a free key raises the ceiling. All Pokémon intellectual property belongs to its owners.
GET https://api.pokemontcg.io/v2/sets?pageSize=1
{
"data": [
{
"id": "base1",
"name": "Base",
"series": "Base",
"printedTotal": 102,
"total": 102,
"releaseDate": "1999/01/09"
}
],
"page": 1,
"pageSize": 1,
"totalCount": 173
}curl "https://api.pokemontcg.io/v2/sets?pageSize=1"const res = await fetch("https://api.pokemontcg.io/v2/sets?pageSize=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.pokemontcg.io/v2/sets?pageSize=1")
print(res.json())/sets?pageSize=1PROBEDQuery Pokémon trading-card data — sets, cards, prices, and images
/sets?limit=5Sets — documented GET route.
/sets?page=1Sets — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Pokémon TCG: common questions
Is Pokémon TCG free to use?
Yes — Pokémon TCG is a free games API. Free tier: Free; no key ~1,000 req/day & 30/min, free key ~20,000 req/day (documented). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Pokémon TCG need an API key?
No — Pokémon TCG needs no API key or signup. You can call it straight away; rate limits still apply (Without key: ~30 req/min, 1,000 req/day (documented)).
Can I call Pokémon TCG from the browser?
Yes — Pokémon TCG returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Pokémon TCG up right now?
As of our last scheduled check, Pokémon TCG is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.