PokéAPI · Example Payload

Pokeapi Stat Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnamegame_indexis_battle_onlyaffecting_movesaffecting_naturescharacteristicsmove_damage_classnames

Example Payload

Raw ↑
{
  "id": 1,
  "name": "example",
  "game_index": 1,
  "is_battle_only": true,
  "affecting_moves": {},
  "affecting_natures": {},
  "characteristics": [
    {
      "url": "https://pokeapi.co/api/v2/example/1/"
    }
  ],
  "move_damage_class": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "names": [
    {
      "name": "example"
    }
  ]
}