SleevedSleeved Docs

Get a single card

Fetch a single card record by its ID within a specific game from the Sleeved card index.

Fetches a single card record by its ID within a game.

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. Valid values: digimon, gundam, grand-archive, chrono-core.

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

Card identifier. Alphanumeric, hyphens, and underscores only. Maximum 100 characters.

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

Response Body

curl -X GET "https://api.sleeved.gg/api/v1/games/digimon/cards/string"
{
  "data": {
    "id": "BT1-001",
    "name": "Koromon",
    "gameId": "digimon",
    "type": "Digimon",
    "color": "Red",
    "level": 2
  }
}
{
  "error": "Invalid card ID format"
}

{
  "error": "API key required"
}

{
  "error": "Game not found"
}

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