PokéAPI · Example Payload

Pokeapi Move Ailment Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

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

Top-level fields

idnamemovesnames

Example Payload

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