PokéAPI · Example Payload

Pokeapi Location Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnameregionnamesgame_indicesareas

Example Payload

Raw ↑
{
  "id": 1,
  "name": "example",
  "region": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "names": [
    {
      "name": "example"
    }
  ],
  "game_indices": [
    {}
  ],
  "areas": [
    {
      "name": "example",
      "url": "https://pokeapi.co/api/v2/example/1/"
    }
  ]
}