LQ
Get all the details and stats for a specific Pokémon by its name or ID.
https://pokeapi.co/api/v2/pokemon/:id_or_namecurl -X GET \ "https://pokeapi.co/api/v2/pokemon/:id_or_name"
{
"id": 25,
"name": "pikachu",
"base_experience": 112,
"height": 4,
"is_default": true,
"order": 35,
"weight": 60,
"abilities": [
{
"is_hidden": false,
"slot": 1,
"ability": {
"name": "static",
"url": "https://pokeapi.co/api/v2/ability/9/"
}
}
],
"types": [
{
"slot": 1,
"type": {
"name": "electric",
"url": "https://pokeapi.co/api/v2/type/13/"
}
}
]
}