Most endpoints require authentication in order to receive a successful response. In order to authenticate your API call you will need to include a JWT bearer token within the request header. Bearer tokens are issued for 24 hours at a time. Refer to individual endpoints for authentication support.

Standard Authentication

To request an authentication token submit a HTTPS POST to https://[your_page].status.page/api/authenticate with the following form data included in the body:

NameValue
userName[your username/email address]
password[your password]

Once you have your bearer token just include in the header of your request in as "Authorization": "Bearer <your_token>"

Account Token Authentication

See API Token Integration to learn how you can generate an account level token to be used in place of the username/password generated token. Use an account level token in the same way that you would the standard bearer token.

Language
Authorization
Bearer
JWT
URL
Click Try It! to start a request and see the response here!