PokéAPI · Example Payload

Pokeapi Berry Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnamegrowth_timemax_harvestnatural_gift_powersizesmoothnesssoil_drynessfirmnessflavorsitemnatural_gift_type

Example Payload

Raw ↑
{
  "id": 1,
  "name": "example",
  "growth_time": 1,
  "max_harvest": 1,
  "natural_gift_power": 1,
  "size": 1,
  "smoothness": 1,
  "soil_dryness": 1,
  "firmness": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "flavors": [
    {
      "potency": 1,
      "flavor": {}
    }
  ],
  "item": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  },
  "natural_gift_type": {
    "name": "example",
    "url": "https://pokeapi.co/api/v2/example/1/"
  }
}