My Pokémon API

There's only one that matters.

GET https://api.pokemon.com/v1/pokemon/:id

This endpoint allows you to get only one Pokémon.

Path Parameters

Name
Type
Description

id

string

ID of the Pokémon to get, of course it only works for one Pokémon.

Query Parameters

Name
Type
Description

shiny

boolean

The API will do its best to shiny hunt for this Pokémon, but that's a lot of hard work.

iv

array

The given IV's for the desired Pokémon, honestly only NEETs or perfectionists care about this field.

Headers

Name
Type
Description

authentication

string

Authentication token to track down who robbed my beautiful Pokémon, you worse than scum robber.

{    "name": "Mew",    "shiny": False,    "iv": [5, 6, 6, 5, 4, 6]}

Last updated