pokemon
Get stat
Stats determine certain aspects of battles. Each Pokémon has a value for each stat which grows as they gain levels and can be altered momentarily by effects in battles.
get/api/v2/stat/{id}/
Path parameters
idstring required
This parameter can be a string or an integer.
Response
Example response
{
"affecting_moves": {
"increase": [
{
"change": -1,
"move": {
"name": "swords-dance",
"url": "https://pokeapi.co/api/v2/move/14/"
}
}
],
"decrease": [
{
"change": 5,
"move": {
"name": "growl",
"url": "https://pokeapi.co/api/v2/move/45/"
}
}
]
},
"affecting_natures": {
"increase": [
{
"name": "lonely",
"url": "https://pokeapi.co/api/v2/nature/6/"
}
],
"decrease": [
{
"name": "bold",
"url": "https://pokeapi.co/api/v2/nature/2/"
}
]
},
"affecting_items": [
{
"name": "protein",
"url": "https://pokeapi.co/api/v2/item/46/"
}
]
}