PokéAPI · Example Payload

Pokeapi Super Contest Effect Example

PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity

Pokeapi Super Contest Effect 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

idappealflavor_text_entriesmoves

Example Payload

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