Pokemon Go API – Fast Move API

This post talks about the newest Pokemon Go API, the Fast Move API at pogoapi.net.

Fast moves in Pokemon Go

In Pokemon Go there are two different types of moves, fast moves and charged moves. Fast moves require no time to charge the special bar and will be performed each time you tap the screen.

These moves are the weaker of the two and depending on the move may be less important when fighting bosses. These moves will also help charge the special bar to allow you to use the charged moves.

This API will give the full details of the fast move such as the power of the move and how long it takes to perform.

Getting the Fast move details

This API lists all details about the Fast moves available in Pokemon Go.

GET /api/v1/fast_moves.json

Returns a JSON array where each element is a dict containing the stamina_loss_scaler, name, power, duration, energy_delta and type.

Example data

[
    {
        "stamina_loss_scaler": "0.01",
        "name": "Fury Cutter",
        "power": 3,
        "duration": 400,
        "energy_delta": 6,
        "type": "Bug"
    }, {
        "stamina_loss_scaler": "0.01",
        "name": "Bug Bite",
        "power": 5,
        "duration": 500,
        "energy_delta": 6,
        "type": "Bug"
    }, {
        "stamina_loss_scaler": "0.01",
        "name": "Bite",
        "power": 6,
        "duration": 500,
        "energy_delta": 4,
        "type": "Dark"
    }, ...
]

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.