YGOPRODeck Archetypes API

Recognised Yu-Gi-Oh! archetype catalog.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/yu-gi-oh-archetypes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

yu-gi-oh-archetypes-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: YGOPRODeck Yu-Gi-Oh! Card Database Archetypes API
  version: v7
  description: 'YGOPRODeck is a free, community-run REST API for the complete Yu-Gi-Oh! Trading Card Game

    corpus. The v7 API exposes card search and filtering, card sets, archetypes, the valid

    value enumerations used by the search engine (types, races, attributes, link markers),

    the underlying database version, and a random-card endpoint. No authentication is required;

    the documented rate limit is 20 requests per second per IP (one-hour ban on violation).


    All card text and imagery is copyright Konami Digital Entertainment / 4K Media. This spec

    is a third-party API description, generated from the YGOPRODeck API Guide

    (https://ygoprodeck.com/api-guide/) and live response inspection.

    '
  termsOfService: https://ygoprodeck.com/api-guide/
  contact:
    name: YGOPRODeck
    url: https://ygoprodeck.com/
  license:
    name: Community / Unspecified
    url: https://ygoprodeck.com/about/
  x-generated-from: documentation
  x-last-validated: '2026-05-30'
servers:
- url: https://db.ygoprodeck.com/api/v7
  description: YGOPRODeck v7 production API
tags:
- name: Archetypes
  description: Recognised Yu-Gi-Oh! archetype catalog.
paths:
  /archetypes.php:
    get:
      tags:
      - Archetypes
      operationId: listArchetypes
      summary: YGOPRODeck List Archetypes
      description: 'Return every recognised Yu-Gi-Oh! archetype name. Useful to populate archetype pickers

        and to validate the `archetype` parameter on `/cardinfo.php`.

        '
      responses:
        '200':
          description: The complete archetype catalog.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Archetype'
              examples:
                ListArchetypes200Example:
                  summary: Default listArchetypes 200 response
                  x-microcks-default: true
                  value:
                  - archetype_name: Blue-Eyes
                  - archetype_name: Dark Magician
                  - archetype_name: Red-Eyes
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Archetype:
      type: object
      description: A recognised Yu-Gi-Oh! archetype.
      properties:
        archetype_name:
          type: string
          description: Archetype name.
          example: Blue-Eyes
      required:
      - archetype_name
externalDocs:
  description: YGOPRODeck API Guide
  url: https://ygoprodeck.com/api-guide/