Authentication
Access to the API is protected through an API key. Authentication occurs via HTTP Basic Auth. The basic auth username must be set to your API key and the password should be left blank.
All requests must be made over HTTPS and authenticated. Any request over HTTP will fail.
Authentication through HTTP Basic Auth:
curl -u your-api-key: "api_endpoint_here"The following response can be expected for unauthorised requests
HTTP/1.1 401 UNAUTHORIZED
Content-Type: application/json
{
"message": "Unauthorised"
}API Key
You must replace your-api-key with your personal API key.