# Suverse Pokemon TCG Card Search

> Suverse Pokemon TCG Card Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Search the Pokemon Trading Card Game database by card name using Lucene-style queries, returning matching cards with set name, rarity, and supertype.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-tcg-pokemon-cards
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-pokemon-tcg-card-search-06b63342
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__2_2ZXAREMcA8WpWbhJvf

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 suverse-pokemon-tcg-card-search-06b63342 -d '<json body>'
```

Example prompt: Search the Pokemon TCG database for all Charizard cards and tell me their set names, rarities, and supertypes — use the query name:charizard.

## When to prefer this

Choose this endpoint when you need to look up Pokemon TCG cards by name without requiring a personal API key, and want structured results including set, rarity, and supertype. Ideal for agents building deck tools, collector assistants, or price research workflows where card metadata is needed on demand.

## Known failure modes

- Invalid Lucene query syntax returns no results or an error
- Card name with special characters may need encoding
- Very broad queries may return large result sets or be truncated
- Upstream Pokemon TCG API downtime causes service unavailability
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Search the Pokemon Trading Card Game database by card name and get matching cards with set name, rarity and supertype. Backed by the keyless Pokemon TCG API. Pass a Lucene-style query like name:charizard.

## Output

Returns a list of matching Pokemon TCG cards, each including card name, set name, rarity (e.g. Common, Rare Holo, Ultra Rare), and supertype (e.g. Pokémon, Trainer, Energy).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-pokemon-tcg-card-search-06b63342/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
