Yu-Gi-Oh!
Search Yu-Gi-Oh! cards with stats, sets, prices, and art
Query the YGOPRODeck database by card name or filters and get full card details — type, ATK/DEF, archetype, set printings, and market prices. Keyless JSON with permissive CORS. Yu-Gi-Oh! is Konami's property.
GET https://db.ygoprodeck.com/api/v7/cardinfo.php?name=Dark%20Magician
{
"data": [
{
"id": 46986414,
"name": "Dark Magician",
"type": "Normal Monster",
"race": "Spellcaster",
"atk": 2500,
"def": 2100,
"level": 7,
"attribute": "DARK"
}
]
}curl "https://db.ygoprodeck.com/api/v7/cardinfo.php?name=Dark%20Magician"const res = await fetch("https://db.ygoprodeck.com/api/v7/cardinfo.php?name=Dark%20Magician");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://db.ygoprodeck.com/api/v7/cardinfo.php?name=Dark%20Magician")
print(res.json())/cardinfo.php?name=Dark%20MagicianPROBEDSearch Yu-Gi-Oh! cards with stats, sets, prices, and art
/cardinfo.php?limit=5Cardinfo Php — documented GET route.
/cardinfo.php?page=1Cardinfo Php — documented GET route.
/cardinfo.phpCardinfo Php — documented GET route.
/cardinfo.php?name=Decode%20TalkerCardinfo Php — documented GET route.
/cardinfo.php?name=Tornado%20DragonCardinfo 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.
Yu-Gi-Oh!: common questions
Is Yu-Gi-Oh! free to use?
Yes — Yu-Gi-Oh! 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 Yu-Gi-Oh! need an API key?
No — Yu-Gi-Oh! needs no API key or signup. You can call it straight away; rate limits still apply (20 requests per second per IP (documented)).
Can I call Yu-Gi-Oh! from the browser?
Yes — Yu-Gi-Oh! 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 Yu-Gi-Oh! up right now?
As of our last scheduled check, Yu-Gi-Oh! is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.