Endpoints
Pokemon
Pokedex

Pokemon pokedex endpoint

GET /pokemon/pokedex

Query Requirements:

Query Parameter
id

Example Response:

URL
https://api.some-random-api.com/pokemon/pokedex?id=...
Response
// 200 OK
{
  "name": "bulbasaur",
  "id": "001",
  "type": [
    "Grass",
    "Poison"
  ],
  "species": [
    "Seed",
    "Pokémon"
  ],
  "abilities": [
    "Overgrow",
    "Chlorophyll"
  ],
  "height": "0.7\u00A0m (2′04″)",
  "weight": "6.9\u00A0kg (15.2\u00A0lbs)",
  "base_experience": "64",
  "gender": [
    "87.5% male",
    "12.5% female"
  ],
  "egg_groups": [
    "Grass",
    "Monster"
  ],
  "stats": {
    "hp": "45",
    "attack": "49",
    "defense": "49",
    "sp_atk": "65",
    "sp_def": "65",
    "speed": "45",
    "total": "318"
  },
  "family": {
    "evolutionStage": 1,
    "evolutionLine": [
      "Bulbasaur",
      "Ivysaur",
      "Venusaur"
    ]
  },
  "sprites": {
    "normal": "http://i.some-random-api.com/pokemon/bulbasaur.png",
    "animated": "http://i.some-random-api.com/pokemon/bulbasaur.gif"
  },
  "description": "A strange seed was planted on its back at birth. The plant sprouts and grows with this Pokémon.",
  "generation": "1"
}
 
// 404 Not Found
{
  "error": "Sorry, I could not find that pokemon"
}