# Pokémon Info Lookup

> Pokémon Info Lookup is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns detailed Pokémon data including abilities, types, base stats, sprites, and evolution chain for a given Pokémon name or ID.

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/pokemon/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-807443a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d72FUFAmuLKTXOMY97YFW

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 padelmaps-org-807443a2 -d '<json body>'
```

Example prompt: Can you pull up the full Pokémon info for Charizard — I want its types, base stats, abilities, sprite, and evolution chain?

## When to prefer this

Use this endpoint when you need comprehensive Pokémon data — stats, types, abilities, sprites, and evolution info — all in one call. Prefer it over scraping Bulbapedia or calling PokéAPI directly when you want a paid, reliable, single-source endpoint with x402 micropayment support.

## Known failure modes

- Invalid Pokémon name or ID returns a 404 or error response
- Misspelled Pokémon name may return no results
- Network timeout if upstream Pokémon data source is unavailable
- Payment failure if USDC balance is insufficient for the $0.01 fee

## How this service works

Provides detailed Pokémon data — abilities, types, stats, sprites, and evolution info — for a given Pokémon name or ID.

## Output

A structured JSON object containing the Pokémon's name, ID, types, base stats (HP, Attack, Defense, Sp. Atk, Sp. Def, Speed), list of abilities, sprite image URLs, and evolution chain information.

## Example request

```json
{
 "pokemonName": "Charizard"
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json"
     ]
    },
    "body": {
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "type": "object",
     "properties": {
      "pokemon": {
       "type": "string",
       "description": "Pokemon name (default 'pikachu'). Alias: 'name'. E.g. 'charizard', 'mewtwo'"
      }
     }
    }
   },
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "id": {
       "type": "integer"
      },
      "types": {
       "type": "array"
      },
      "stats": {
       "type": "object"
      },
      "abilities": {
       "type": "array"
      },
      "sprite": {
       "type": "string"
      }
     }
    }
   }
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-807443a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from padelmaps.org](https://www.zero.xyz/host/padelmaps.org/llms.txt)
