# Pokemon Species Search API

> Pokemon Species Search API is a paid API for AI agents from x402.professorsausages.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

List and search Pokémon species by name, type, or Pokédex number range with paginated structured JSON results

## Facts

- Endpoint: GET https://x402.professorsausages.com/pokemon/species
- 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/pokemon-species-search-api-4deba0a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rzyjLc9DbSzSRb0bAqho_

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 pokemon-species-search-api-4deba0a2
```

Example prompt: Can you look up all Fire-type Pokémon species in the Pokédex, starting from number 1 through 151, and give me the full list with their names and types?

## When to prefer this

Use this endpoint when an agent needs structured, paginated Pokémon species reference data filtered by name, type, or Pokédex number range — particularly useful for game agents, Pokédex tools, or applications that need canonical Pokémon species metadata without building their own database.

## Known failure modes

- Invalid type name returns empty results or 400 error
- Pokédex range out of bounds returns empty list
- Missing or malformed input object returns 400 bad request
- Payment not processed (x402 flow failure) results in 402 response
- Rate limit exceeded returns 429
- Misspelled Pokémon name returns empty result set

## How this service works

List & search Pokemon species by name, type or Pokedex range — paginated structured JSON reference for game agents

## Output

A paginated JSON array of Pokémon species records, each containing species name, type(s), and Pokédex number, along with pagination metadata such as total count, current page, and next page reference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pokemon-species-search-api-4deba0a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.professorsausages.com](https://www.zero.xyz/host/x402.professorsausages.com/llms.txt)
