SleevedSleeved Docs

Get single card

Fetch a single card by its ID.

The response structure is determined by the game slug — see the per-game schemas for the exact fields returned.

GET
/games/{slug}/cards/{cardId}
X-API-Key<token>

Your Sleeved API key. Format: slvd_live_<hex>. Contact Sleeved to obtain a key.

In: header

Path Parameters

slugstring

Game identifier. Canonical list: packages/lib/src/games.ts (PUBLIC_API_GAME_SLUGS). Update that file and this enum together when adding a game.

Value in"digimon" | "gundam" | "grand-archive" | "chrono-core"
cardIdstring

Card identifier. Format varies by game: Digimon (BT1-010), Gundam (GD01-001), Chrono Core (WNR01-001), Grand Archive uses lowercase opaque slugs (RWwB4PfbAT).

Match^[A-Za-z0-9_-]{1,100}$
Lengthlength <= 100

Response Body

curl -X GET "https://api.sleeved.gg/v1/games/digimon/cards/BT1-010"

{
  "data": {
    "setName": "RELEASE SPECIAL BOOSTER Ver.1.0 [BT01-03]",
    "color": [
      "Red"
    ],
    "securityEffect": null,
    "productOrigin": "RELEASE SPECIAL BOOSTER Ver.1.0 [BT01-03]",
    "dp": 2000,
    "type": "Reptile",
    "playCost": 3,
    "aceEffect": null,
    "timings": [
      "On Play"
    ],
    "setId": "BT1",
    "attribute": "Vaccine",
    "id": "BT1-010",
    "linkDp": null,
    "level": 3,
    "cardType": "Digimon",
    "specialDigivolutionConditions": null,
    "cardImageUrl": "https://cdn.example.com/cards/digimon/BT1/BT1-010.webp",
    "inheritedEffect": null,
    "setOrder": 999999,
    "hasLink": false,
    "digivolveCondition": [
      {
        "color": [
          "Red"
        ],
        "cost": 0,
        "level": 2
      }
    ],
    "form": "Rookie",
    "effect": "[On Play] Reveal 5 cards from the top of your deck. Add 1 Tamer card among them to your hand. Place the remaining cards at the bottom of your deck in any order.",
    "linkCondition": null,
    "name": {
      "english": "Agumon"
    },
    "imageSourceUrl": "https://world.digimoncard.com/images/cardlist/card/BT1-010.png",
    "cardNumber": "BT1-010",
    "specialDigivolve": null,
    "illustrator": "TANIMESO",
    "linkEffect": null,
    "rarity": "R",
    "cardArts": [
      {
        "id": "BT1-010",
        "type": "Base Art",
        "url": "https://cdn.example.com/cards/digimon/BT1/BT1-010.webp"
      },
      {
        "id": "BT1-010_P1",
        "type": "Alternative Art",
        "url": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P1.webp",
        "illustrator": "Ryuda",
        "tcgplayerProductId": 229821,
        "pricingLabel": "Release Special Booster 1.0 (Dash Pack Ver. 1.0)"
      },
      {
        "id": "BT1-010_P2",
        "type": "Alternative Art",
        "url": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P2.webp",
        "illustrator": "Kayo Horaguchi",
        "tcgplayerProductId": 279009,
        "pricingLabel": "Release Special Booster 1.0 (Tamer's Card Set 2 Floral Fun)"
      },
      {
        "id": "BT1-010_P4",
        "type": "Alternative Art",
        "url": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P4.webp",
        "illustrator": "PLEX Fumiya Kobayashi",
        "tcgplayerProductId": 515604,
        "pricingLabel": "Resurgence Booster (Resurgence Booster Reprint)"
      }
    ],
    "AAs": [
      {
        "id": "BT1-010_P1",
        "type": "Alternative Art",
        "illustrator": "Ryuda",
        "cardImageUrl": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P1.webp",
        "pricingLabel": "Release Special Booster 1.0 (Dash Pack Ver. 1.0)",
        "tcgplayerProductId": 229821,
        "productOrigin": "Dash Pack Ver.1.0"
      },
      {
        "id": "BT1-010_P2",
        "type": "Alternative Art",
        "illustrator": "Kayo Horaguchi",
        "cardImageUrl": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P2.webp",
        "pricingLabel": "Release Special Booster 1.0 (Tamer's Card Set 2 Floral Fun)",
        "tcgplayerProductId": 279009,
        "productOrigin": "Playmat and Card Set 2 -Floral Fun- [PB-09]"
      },
      {
        "id": "BT1-010_P4",
        "type": "Alternative Art",
        "illustrator": "PLEX Fumiya Kobayashi",
        "cardImageUrl": "https://cdn.example.com/cards/digimon/BT1/BT1-010_P4.webp",
        "pricingLabel": "Resurgence Booster (Resurgence Booster Reprint)",
        "tcgplayerProductId": 515604,
        "productOrigin": "RESURGENCE BOOSTER [RB01]"
      }
    ],
    "hasAltArt": true,
    "objectID": "BT1-010"
  }
}

{
  "error": "Invalid card ID format"
}

{
  "error": "API key required"
}

{
  "error": "Game not found"
}

{
  "error": "Rate limit exceeded"
}
{
  "error": "Internal server error"
}