PokéAPI · Example Payload

Pokeapi Pokemon Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnamebase_experienceheightis_defaultorderweightabilitiesformsgame_indicesheld_itemslocation_area_encountersmovesspeciesspritesstatstypes

Example Payload

Raw ↑
{
  "id": 1,
  "name": "example",
  "base_experience": 1,
  "height": 1,
  "is_default": true,
  "order": 1,
  "weight": 1,
  "abilities": [
    {
      "is_hidden": true,
      "slot": 1,
      "ability": {}
    }
  ],
  "forms": [
    {
      "name": "example",
      "url": "https://pokeapi.co/api/v2/example/1/"
    }
  ],
  "game_indices": [
    {}
  ],
  "held_items": [
    {}
  ],
  "location_area_encounters": "example",
  "moves": [
    {}
  ],
  "species": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "sprites": {},
  "stats": [
    {
      "base_stat": 1,
      "effort": 1,
      "stat": {}
    }
  ],
  "types": [
    {
      "slot": 1,
      "type": {}
    }
  ]
}