Digimon TCG
Search Digimon Card Game cards from digimoncard.io
A public search API for the Digimon trading card game. Query by card name to get types, colours, DP, effects, rarity and the sets a card appears in, all as JSON. No key required.
GET https://digimoncard.io/api-public/search.php?n=Agumon
[
{
"name": "Agumon",
"type": "Digimon",
"id": "P-009",
"color": "Red",
"dp": 2000,
"attribute": "Vaccine",
"stage": "Rookie",
"rarity": "p"
}
]curl "https://digimoncard.io/api-public/search.php?n=Agumon"const res = await fetch("https://digimoncard.io/api-public/search.php?n=Agumon");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://digimoncard.io/api-public/search.php?n=Agumon")
print(res.json())/search.php?n=AgumonPROBEDSearch Digimon Card Game cards from digimoncard.io
/search.php?limit=5Search Php — documented GET route.
/search.php?page=1Search Php — 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.
Digimon TCG: common questions
Is Digimon TCG free to use?
Yes — Digimon TCG is a free games API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Digimon TCG need an API key?
No — Digimon TCG needs no API key or signup. You can call it straight away; rate limits still apply (90 req/window · 89 remaining).
Can I call Digimon TCG from the browser?
Yes — Digimon 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 Digimon TCG up right now?
As of our last scheduled check, Digimon TCG is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.