YGOPRODeck · Schema

CardImage

Image URLs for a single artwork variant of a card.

GamesTrading Card GamesYu Gi OhCard DatabaseOpen DataCommunity APIPublic APIs

Properties

Name Type Description
id integer Image id (matches the card id for the default artwork; differs for alternate artworks).
image_url string Full-size card image URL. Do not hotlink — download and self-host.
image_url_small string Small / thumbnail image URL.
image_url_cropped string Cropped artwork-only image URL (no frame).
View JSON Schema on GitHub

JSON Schema

ygoprodeck-api-card-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/yu-gi-oh/refs/heads/main/json-schema/ygoprodeck-api-card-image-schema.json",
  "title": "CardImage",
  "description": "Image URLs for a single artwork variant of a card.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Image id (matches the card id for the default artwork; differs for alternate artworks).",
      "example": 46986414
    },
    "image_url": {
      "type": "string",
      "format": "uri",
      "description": "Full-size card image URL. Do not hotlink \u2014 download and self-host.",
      "example": "https://images.ygoprodeck.com/images/cards/46986414.jpg"
    },
    "image_url_small": {
      "type": "string",
      "format": "uri",
      "description": "Small / thumbnail image URL.",
      "example": "https://images.ygoprodeck.com/images/cards_small/46986414.jpg"
    },
    "image_url_cropped": {
      "type": "string",
      "format": "uri",
      "description": "Cropped artwork-only image URL (no frame).",
      "example": "https://images.ygoprodeck.com/images/cards_cropped/46986414.jpg"
    }
  },
  "required": [
    "id",
    "image_url",
    "image_url_small",
    "image_url_cropped"
  ]
}