Authentication

To use the API, you need an API Key.

API Key

Need an API key? You can obtain one herearrow-up-right!

For every API route, your request must have the Authorization header as a Bearer key.

Authorization: Bearer <key>

Error responses

Errors always returns a object that looks like the one below.

{
    error: true,
    code: 400,
    message: 'User ID must be a number only'
}

Last updated