Pokemon Go API – Maximum Pokemon Combat Power

This post talks about the newest Pokemon Go API, the maximum Pokemon Combat Power API at pogoapi.net.

Maximum Pokemon Combat Power

Each Pokemon has a maximum CP that it may achieve if it is a perfect pokemon (with 15 attack, stamina, and defense) and is level 40.

This would represent the strongest Pokemon combat power for the Pokemon type.

Getting the Maximum Pokemon Combat Power

This API returns the maximum CP for each Pokemon.

GET /api/v1/pokemon_max_cp.json

Returns a JSON array where each element is a dict containing the pokemon name, ID, and maximum CP.

Example data

[
    {
        name: "Bulbasaur",
        max_cp: 981,
        id: 1
    },
    {
        name: "Ivysaur",
        max_cp: 1552,
        id: 2
    },
    {
        name: "Venusaur",
        max_cp: 2568,
        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.