v48

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0398207265.0 KB
games

Get pokedex

A Pokédex is a handheld electronic encyclopedia device; one which is capable of recording and retaining information of the various Pokémon in a given region with the exception of the national dex and some smaller dexes related to portions of a region. See Bulbapedia for greater detail.

get/api/v2/pokedex/{id}/

Path parameters

idstring required

This parameter can be a string or an integer.

Response

idinteger required
namestring required
is_main_seriesboolean

Example response

{
  "pokemon_entries": [
    {
      "entry_number": 1,
      "pokemon_species": {
        "name": "bulbasaur",
        "url": "https://pokeapi.co/api/v2/pokemon-species/1/"
      }
    }
  ],
  "version_groups": [
    {
      "name": "the-teal-mask",
      "url": "https://pokeapi.co/api/v2/version-group/26/"
    }
  ]
}