SleevedSleeved Docs

List available games

Retrieve the list of supported TCG games and their Algolia index names for client-side search integration.

Returns all games available via the public API, along with their Algolia index names for client-side search integration.

GET
/games
X-API-Key<token>

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

In: header

Response Body

curl -X GET "https://api.sleeved.gg/api/v1/games"
{
  "data": [
    {
      "id": "digimon",
      "displayName": "Digimon Card Game",
      "algoliaIndexName": "digimon_cards"
    },
    {
      "id": "gundam",
      "displayName": "Gundam Card Game",
      "algoliaIndexName": "gundam_cards"
    },
    {
      "id": "grand-archive",
      "displayName": "Grand Archive TCG",
      "algoliaIndexName": "grand_archive_cards"
    },
    {
      "id": "chrono-core",
      "displayName": "Chrono Core TCG",
      "algoliaIndexName": "chrono_core_cards"
    }
  ]
}

{
  "error": "API key required"
}

{
  "error": "Rate limit exceeded"
}