# 2s TCG Games List

> 2s TCG Games List is a paid API for AI agents from 2s.io, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Returns a list of all trading card games (TCGs) available in the TCGplayer-derived dataset, including each game's internal name, display name, and category ID.

## Facts

- Endpoint: GET https://2s.io/api/tcg/games
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-tcg-games-list-98a68525
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6U_T9gvbobtg8gghb23RG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-tcg-games-list-98a68525
```

Example prompt: What trading card games are available in the TCGplayer-derived card database? Give me the full list of supported games.

## When to prefer this

Use this endpoint when you need to discover what trading card games are supported before querying card-level data, or when building a game selector/filter UI. This is the canonical catalog lookup for the 2s.io TCG dataset and should be called first to obtain valid category IDs for downstream card or price queries.

## Known failure modes

- Network or upstream timeout returning no data
- Data source (tcgcsv.com) unavailable causing empty or error response
- Unexpected schema changes from upstream provider

## How this service works

The (most) everything API: 575+ pay-per-call endpoints for AI agents — ground-truth data, a full AI gateway, and agent infrastructure (storage, queues, watchers). USDC via x402, no signup, no API keys, and upto billing: pay actual usage, not the quote.

## Output

Returns a JSON object with an array of trading card game entries (each containing a machine-readable name, integer category ID, and human-readable display name like 'Magic: The Gathering' or 'Pokemon'), a total count of available games (~90), and source attribution metadata including the data provider URL and license information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "items": {
    "type": "array",
    "items": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "categoryId": {
       "type": "integer"
      },
      "displayName": {
       "type": "string"
      }
     }
    }
   },
   "total": {
    "type": "integer"
   },
   "source": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "license": {
      "type": "string"
     },
     "provider": {
      "type": "string"
     }
    }
   }
  }
 },
 "example": {
  "ok": true,
  "items": [
   {
    "name": "Magic",
    "categoryId": 1,
    "displayName": "Magic: The Gathering"
   },
   {
    "name": "Pokemon",
    "categoryId": 3,
    "displayName": "Pokemon"
   }
  ],
  "total": 90,
  "source": {
   "url": "https://tcgcsv.com/",
   "license": "TCGplayer-derived pricing via tcgcsv.com",
   "provider": "tcgcsv.com (TCGplayer-derived pricing)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-tcg-games-list-98a68525/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
