evolution

Get evolution chain

Evolution chains are essentially family trees. They start with the lowest stage within a family and detail evolution conditions for each as well as Pokémon they can evolve into up through the hierarchy.

get/api/v2/evolution-chain/{id}/

Path parameters

idinteger required

A unique integer value identifying this evolution chain.

Response

idinteger required

Example response

{
  "chain": {
    "evolution_details": [],
    "evolves_to": [
      {
        "is_baby": true,
        "species": {
          "name": "happiny",
          "url": "https://pokeapi.co/api/v2/pokemon-species/440/"
        }
      }
    ],
    "is_baby": true,
    "species": {
      "name": "happiny",
      "url": "https://pokeapi.co/api/v2/pokemon-species/440/"
    }
  }
}

Changes