# x402 Tools Pokémon Info

> x402 Tools Pokémon Info is a paid API for AI agents from x402.onchainexpat.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns detailed Pokémon data including species, base stats, abilities, and images for a given Pokémon name or ID

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-tools/pokemon/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-onchainexpat-com-ec0c4285
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_deP2EFzpZ4jGUes86VPIa

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 x402-onchainexpat-com-ec0c4285 -d '<json body>'
```

Example prompt: Can you look up the full details for Charizard — its species info, base stats like HP and attack, all its abilities, and its official image?

## When to prefer this

Use this endpoint when you need comprehensive Pokémon data (stats, abilities, images, species) in a single call via a micropayment-gated x402 API. Prefer this over free alternatives when operating in a paid x402 workflow where consistent, structured output is needed.

## Known failure modes

- Pokémon name not found — returns 404 or error if the name/ID doesn't match a known Pokémon
- Invalid input format — non-string or empty name returns a validation error
- Payment failure — USDC micropayment of $0.01 not completed, returns 402 Payment Required
- Upstream data source unavailable — returns 503 or timeout if PokéAPI is unreachable

## How this service works

Pay-per-request AI, crypto, proxy, and utility APIs using x402 protocol

## Output

A structured response containing the Pokémon's species name, base stats (HP, Attack, Defense, Special Attack, Special Defense, Speed), list of abilities, type(s), and image URL(s).

## Example request

```json
{
 "chain": "ethereum",
 "address": "0x1234567890123456789012345678901234567890"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pokemon": {
   "type": "string",
   "description": "Pokemon name (default 'pikachu'). Alias: 'name'. E.g. 'charizard', 'mewtwo'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "integer"
  },
  "name": {
   "type": "string"
  },
  "stats": {
   "type": "object"
  },
  "types": {
   "type": "array"
  },
  "sprite": {
   "type": "string"
  },
  "abilities": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-onchainexpat-com-ec0c4285/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.onchainexpat.com](https://www.zero.xyz/host/x402.onchainexpat.com/llms.txt)
