PokéAPI · Example Payload

Pokeapi Nature Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnamedecreased_statincreased_statlikes_flavorhates_flavornames

Example Payload

Raw ↑
{
  "id": 1,
  "name": "example",
  "decreased_stat": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "increased_stat": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "likes_flavor": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "hates_flavor": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "names": [
    {
      "name": "example"
    }
  ]
}