SleevedSleeved Docs

Get game sync metadata

Check the current card count and last sync timestamp for a game to decide whether your local index needs updating.

Use this to decide whether your local card index needs updating before pulling a full sync.

GET
/games/{slug}/meta
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"

Response Body

curl -X GET "https://api.sleeved.gg/v1/games/digimon/meta"
{
  "data": {
    "cardCount": 4821,
    "lastUpdatedAt": "2025-10-14T08:32:00.000Z"
  }
}

{
  "error": "API key required"
}

{
  "error": "Game not found"
}
{
  "error": "Rate limit exceeded"
}
{
  "error": "Internal server error"
}