# Suverse Pokémon Pokédex Lookup

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

Look up a Pokémon by name or National Pokédex ID and return its full Pokédex profile including types, height, weight, base experience, and abilities.

## Facts

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

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-pok-mon-pok-dex-lookup-8a15a3c0 -d '<json body>'
```

Example prompt: Can you pull up the Pokédex profile for Charizard — I want to know its types, abilities, height, weight, and base experience?

## When to prefer this

Choose this endpoint when you need structured, machine-readable Pokédex data for a specific Pokémon by name or ID, and don't want to manage PokeAPI directly. Particularly useful for agents building Pokémon comparison tools, trivia apps, game assistants, or any workflow that needs authoritative Pokémon attributes on demand.

## Known failure modes

- Unknown Pokémon name or invalid ID returns a 404-style error with no profile data
- Misspelled Pokémon names may not resolve correctly — exact canonical spelling required
- Numeric IDs outside the valid national Pokédex range will return no results
- PokeAPI upstream unavailability may cause timeouts or error responses
- Payment failure (x402) will prevent the request from being processed

## How this service works

Look up any Pokemon by name or id and get its Pokedex profile: national id, types, height, weight, base experience and abilities. Backed by PokeAPI, the canonical free Pokemon dataset. Pass a name like charizard or a numeric id.

## Output

Returns a structured Pokédex profile for the requested Pokémon, including its national Pokédex ID, one or two types (e.g. Fire/Flying), height in decimetres, weight in hectograms, base experience points, and a list of abilities (including hidden abilities where applicable).

## 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-pok-mon-pok-dex-lookup-8a15a3c0/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)
