# Suverse Pokemon Lookup

> Suverse Pokemon Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Look up a Pokémon by name via PokeAPI proxy, returning its types, stats, abilities, height, and weight — no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-pokemon
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-pokemon-lookup-eda5c322
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gt9HaSv79SviL8b9dbvrp

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-lookup-eda5c322 -d '<json body>'
```

Example prompt: What are Gengar's type, base stats, abilities, height, and weight?

## When to prefer this

Choose this endpoint when you need structured Pokémon data (types, stats, abilities, size) by name without managing a PokeAPI key yourself, especially in agent-driven games, trivia bots, or entertainment apps that already use x402 micropayment infrastructure. Prefer this over calling PokeAPI directly when you want a managed, pay-per-call proxy that removes auth overhead.

## Known failure modes

- Pokémon name not found or misspelled — returns an error or empty result
- PokeAPI upstream unavailability causing proxy errors
- Malformed request body missing required 'input' fields — returns validation error
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Look up a Pokemon by name from PokeAPI, no key. Returns types, stats, abilities, height, and weight. For AI agents in games, trivia, and entertainment apps.

## Output

Returns a structured JSON object containing the named Pokémon's elemental types (e.g. fire/flying), full base stat block (HP, Attack, Defense, Special Attack, Special Defense, Speed), list of abilities, and physical measurements (height in decimetres, weight in hectograms).

## 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-lookup-eda5c322/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)
