Pokemon Go API – Base Pokemon Stats

This post talks about the newest Pokemon Go API, the base Pokemon stats API at pogoapi.net.

Base Pokemon Stats

Each Pokemon has three base stats, attack, defense and stamina which determine how innately strong it is in each of these areas. These effect how much HP and damage each move can do along with its level and the typing of the moves.

This will let you get the full base stats of each Pokemon.

Getting the Base Pokemon Stats

This API lists all Pokemon and their base Attack, Defense, and Stamina stats.

GET /api/v1/pokemon_stats.json

Returns a JSON array where each element is a dict containing the pokemon name, ID, base stamina, base attack, and base defense.

Example data

[
    {
        base_stamina: "90",
        base_defense: "118",
        base_attack: "118",
        name: "Bulbasaur",
        id: 1
    },
    {
        base_stamina: "120",
        base_defense: "151",
        base_attack: "151",
        name: "Ivysaur",
        id: 2
    },
    {
        base_stamina: "160",
        base_defense: "198",
        base_attack: "198",
        name: "Venusaur",
        id: 3
    },..
]

The full documentation is available on the PoGoAPI.net documentation page.

If you have any questions about this API or suggestions for other API’s contact me here below or on Twitter!

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.