Yu-Gi-Oh! API
Overview
The Yu-Gi-Oh! API gives you access to a massive database of Yu-Gi-Oh! TCG cards, including card stats, images, prices, and ban list information. It requires no authentication, so you can start making requests immediately without signing up. This is a great choice if you want to build a card lookup tool, deck builder, or fan site.
Beginner Tip
No API key is needed — just call the endpoint directly. Try searching by card name using the ?name= parameter to get detailed card info instantly.
Available Data
Example Response
{
"id": 1,
"name": "Yu-Gi-Oh!",
"data": "Yu-Gi-Oh! TCG Information",
"source": "Yu-Gi-Oh!"
} Field Reference
id Unique numeric identifier for the card in the YGOPRODeck database. name Full official name of the Yu-Gi-Oh! card. type Card type such as Normal Monster, Effect Monster, Spell Card, or Trap Card. atk Attack points of the monster card (null for Spell/Trap cards). def Defense points of the monster card (null for Spell/Trap cards). card_images Array of image objects containing URLs for the card image and small thumbnail. Implementation Example
const url = "https://db.ygoprodeck.com/api-guide/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Age of Empires II
Age of Empires II provides programmatic access to get information about age of empires ii resources via REST API.
AmiiboAPI
AmiiboAPI provides programmatic access to nintendo amiibo information via REST API.
Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.