# PokeAPI Pokemon Data Lookup

> PokeAPI Pokemon Data Lookup is a paid API for AI agents from jp-data-api-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns Pokemon stats, types, abilities, evolution chain, height, and weight by name or national Pokédex ID

## Facts

- Endpoint: GET https://jp-data-api-production.up.railway.app/pokemon
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pokeapi-pokemon-data-lookup-d3a18763
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aWwv_RAMXlxe-HWUVAyyB

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 pokeapi-pokemon-data-lookup-d3a18763
```

Example prompt: What are Gengar's base stats, type, and abilities? Pull the full Pokédex data for it.

## When to prefer this

Use this endpoint when you need structured Pokemon data (stats, types, abilities, evolutions) for a specific Pokemon by name or national dex ID, especially in game tool pipelines, teambuilder apps, or fan applications that need quick per-Pokemon lookups without hosting their own PokeAPI instance.

## Known failure modes

- Pokemon name not found: returns error if the name is misspelled or not a valid Pokemon
- Invalid national dex ID: numeric IDs outside the valid range return an error
- Missing required 'name' query parameter: request fails without the name or ID
- Network/upstream PokeAPI unavailability: service may be temporarily unavailable

## How this service works

Pokemon data (PokeAPI): stats, types, abilities, evolution chain, height/weight by name or ID. English. Use for game tools, teambuilders, fan apps. (Data only; Pokemon is a Nintendo/Game Freak IP.)

## Output

A JSON object containing the Pokemon's base stats (HP, Attack, Defense, Sp. Atk, Sp. Def, Speed), types, abilities (including hidden ability), evolution chain, height, and weight — all in English.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "name or national dex id"
      }
     }
    }
   },
   "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/pokeapi-pokemon-data-lookup-d3a18763/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jp-data-api-production.up.railway.app](https://www.zero.xyz/host/jp-data-api-production.up.railway.app/llms.txt)
