PokéAPI
The Pokémon dataset every tutorial is built on.
PokéAPI serves the full Pokémon universe — species, moves, types, sprites — as deeply linked JSON. It is the most-taught API on the internet and holds up under that traffic remarkably well. Fully static-cached, so latency is excellent worldwide.
GET https://pokeapi.co/api/v2/pokemon/pikachu
{
"id": 25,
"name": "pikachu",
"height": 4,
"weight": 60,
"types": [
{
"slot": 1,
"type": {
"name": "electric"
}
}
]
}curl "https://pokeapi.co/api/v2/pokemon/pikachu"const res = await fetch("https://pokeapi.co/api/v2/pokemon/pikachu");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://pokeapi.co/api/v2/pokemon/pikachu")
print(res.json())/pokemon/pikachuPROBEDFull Pokémon record — stats, types, sprites and evolution chain link.
/pokemon?limit=20&offset=0Paginated list of all Pokémon resource URLs.
/type/fireType metadata and the Pokémon that share it.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
PokéAPI: common questions
Is PokéAPI free to use?
Yes — PokéAPI is a free games API. Free tier: Unlimited (be reasonable). The free tier is for non-commercial use.
Does PokéAPI need an API key?
No — PokéAPI needs no API key or signup. You can call it straight away; rate limits still apply (None — locally cache please).
Can I call PokéAPI from the browser?
Yes — PokéAPI returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is PokéAPI up right now?
As of our last scheduled check, PokéAPI is healthy. We re-probe it every sweep — the status badge and uptime chart above always show the latest.