Pokemon Go API – Galarian Pokemon List

This post talks about the latest API I have added to PoGoAPI.net, the Galarian Pokemon list.

What the Galarian Pokemon API can be used for

In Generation 8 of the Pokemon video games Galarian Pokemon were released. These are Pokemon who canonically evolved in a different area so are subtly different from the standard Pokemon. These all look different and have different typing to classical Pokemon.

This API allows you to get a list of currently released Galarian Pokemon.

Getting the Galarian Pokemon names and ID’s

So far there have only been a few Galarian Pokemon released and this API lets you get the name and ID of all Galarian Pokemon released.

GET /api/v1/galarian_pokemon.json

Returns a JSON dict with the keys being the Pokemon ID, the values are an array containing the Pokemon name and ID.

Example data

{
    "110": {
        "id": 110,
        "name": "Weezing"
    },
    "263": {
        "id": 263,
        "name": "Zigzagoon"
    },
    "264": {
        "id": 264,
        "name": "Linoone"
    },
    "52": {
        "id": 52,
        "name": "Meowth"
    }, ...
}

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.