Pokemon Go API – Mega Evolution Settings API

This post talks about the latest API I have added to PoGoAPI.net, the Mega Evolution Settings API.

What is the Mega Evolution Settings API

For Pokemon that can Mega Evolve there are a number of game settings that are applied to them.

This API lets you obtain the current Mega Evolution settings associated with Mega Evolving Pokemon and the bonuses this provides.

Getting the Mega Evolution Settings data

This API returns the game master settings for Mega Evolutions.

GET /api/v1/mega_evolution_settings.json

Returns a JSON object with the following keys:

  • general_attack_boost – The attack boost given to all Pokemon moves when a Mega Pokemon is in the raid battle
  • max_mega_candy – The maximum amount of Mega candy you can hold for a Pokemon
  • mega_evolution_duration The number of milliseconds the Mega Evolution will stay Mega Evolved, after which it will devolve back into the original form
  • same_type_attack_boost – The attack boost given to all Pokemon moves of the same type as the Mega Pokemon in the raid battle

Example data

{
    "general_attack_boost": 1.1,
    "max_mega_candy": 999,
    "mega_evolution_duration": 14400000,
    "same_type_attack_boost": 1.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.