Using an Access Token

    All requests must be authenticated with an access token.

    After receiving an access token in your email, you must include the token in every request.

    pkmnapi uses Bearer authentication, so the following header should be set with every request:

    bash
    js
    curl \
        -H 'Authorization: Bearer <access_token>' \
        ...