PokéAPI · Example Payload

Pokeapi Chain Link Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Pokeapi Chain Link Example is an example object payload from PokéAPI, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

is_babyspeciesevolution_detailsevolves_to

Example Payload

Raw ↑
{
  "is_baby": true,
  "species": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "evolution_details": [
    {}
  ],
  "evolves_to": [
    {
      "is_baby": true,
      "evolution_details": [],
      "evolves_to": []
    }
  ]
}