# Pokeapi — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for any Pokemon by name or ID to instantly retrieve their types, base stats, abilities, and complete evolution chain. Perfect for building Pokemon reference tools, games, or apps that need comprehensive Pokemon data.

**Category:** Entertainment | **Website:** [pokeapi.co/](https://pokeapi.co/) | **Docs:** [parse.bot/marketplace/3ff46d58-b259-4c29-9c28-f6d894793caf/pokeapi-co-api](https://parse.bot/marketplace/3ff46d58-b259-4c29-9c28-f6d894793caf/pokeapi-co-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-pokeapi-co-api-3ff46d58/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_pokemon

Retrieve a Pokemon by name or numeric ID. Returns the Pokemon's types, all six base stats, abilities (with hidden flag), and the complete evolution chain for its species. The evolution chain is fetched by following the species to evolution-chain link, so one call resolves three upstream requests. A non-existent name or ID returns input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pokemon_id` | string | Yes | Pokemon name (e.g. 'pikachu', 'charizard') or numeric Pokedex ID (e.g. '25', '6'). Case-insensitive. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pokeapi-co-api-3ff46d58/get_pokemon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pokemon_id":"<string>"}'
```
