Pokémon data including stats, abilities, types, and sprites from the PokéAPI. 1000+ Pokémon available. Free, no key required.
https://api.apiclearinghouse.com/v1/call/pokemonAuthenticate with X-Api-Key: chk_live_... header.
/pokemon| Name | Type | Required | Description |
|---|---|---|---|
| name | string | required | Pokémon name or Pokédex number (e.g. "pikachu", "25") |
curl -s "https://api.apiclearinghouse.com/v1/call/pokemon/pokemon?name={name}" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"id": "abc123",
"name": "example",
"types": "example",
"height": "example",
"weight": "example"
}
}/ability| Name | Type | Required | Description |
|---|---|---|---|
| name | string | required | Ability name (e.g. "static", "blaze") |
curl -s "https://api.apiclearinghouse.com/v1/call/pokemon/ability?name={name}" \
-H "X-Api-Key: YOUR_API_KEY"{
"status": "success",
"data": {
"id": "abc123",
"name": "example",
"effect": "example",
"generation": "example"
}
}Monthly limits also apply per plan.