🔒 EXCLUSIVE: Gallery - Complete Album!
Statuspage API (1.0.0)
Download OpenAPI specification:Download
Please don't abuse the API, and please report all feature requests and issues to https://support.atlassian.com/contact
Each API token is limited to 1 request / second as measured on a 60 second rolling window. To get this limit increased, please contact us at https://support.atlassian.com/contact
Error codes 420 or 429 indicate that you have exceeded the rate limit and the request has been rejected.
In order to maintain version integrity into the future, the API is versioned. All calls currently begin with the following prefix:
Wherever possible, the API seeks to implement repeatable patterns with logical, representative URLs and descriptive HTTP verbs. Below are some examples and conventions you will see throughout the documentation.
- Collections are buckets: https://api.statuspage.io/v1/pages/asdf123/incidents.json
- Elements have unique IDs: https://api.statuspage.io/v1/pages/asdf123/incidents/jklm456.json
- GET will retrieve information about a collection/element
- POST will create an element in a collection
- PATCH will update a single element
- PUT will replace a single element in a collection (rarely used)
- DELETE will destroy a single element
Information can be sent in the body as form urlencoded or JSON, but make sure the Content-Type header matches the body structure or the server gremlins will be angry.
All examples are provided in JSON format, however they can easily be converted to form encoding if required. Some examples of how to convert things are below:
// JSON
{
"incident": {
"name": "test incident",
"components": ["8kbf7d35c070", "vtnh60py4yd7"]
}
}
// Form Encoded (using curl as an example):
curl -X POST https://api.statuspage.io/v1/example \
-d "incident[name]=test incident" \
-d "incident[components][]=8kbf7d35c070" \
-d "incident[components][]=vtnh60py4yd7"api_key
Obtaining your API Key
Authentication is done via an API token provided in the Statuspage management interface.
- Log in to your account at https://manage.statuspage.io/login.
- Click on your avatar in the bottom left of your screen to access the user menu.
- Click API info.
Passing your API key in an authorization header
The following example authenticates you with the Statuspage API. Along with the Page ID listed on the API page, we can fetch your page profile.
curl -H "Authorization: OAuth 89a229ce1a8dbcf9ff30430fbe35eb4c0426574bca932061892cefd2138aa4b1" \
https://api.statuspage.io/v1/pages/gytm4qzbx9t6.jsonPassing your API key in a query param
curl "https://api.statuspage.io/v1/pages/gytm4qzbx9t6.json?api_key=89a229ce1a8dbcf9ff30430fbe35eb4c0426574bca932061892cefd2138aa4b1"| Security Scheme Type | API Key |
|---|---|
| Header parameter name: | Authorization |
Update a user's role permissions
Update a user's role permissions. Payload should contain a mapping of pages to a set of the desired roles, if the page has Role Based Access Control. Otherwise, the pages should map to an empty hash. User will lose access to any pages omitted from the payload.
Authorizations:
path Parameters
| organization_id required | string Organization Identifier |
| user_id required | string User identifier |
Request Body schema: application/json
| pages | object |
Responses
Update a user's role permissions. Payload should contain a mapping of pages to a set of the desired roles, if the page has Role Based Access Control. Otherwise, the pages should map to an empty hash. User will lose access to any pages omitted from the payload.
Bad request
Could not authenticate
You are not authorized to access this resource.
The requested resource could not be found.
Request samples
- Payload
- Curl
{- "pages": {
- "page_id": {
- "page_configuration": true,
- "incident_manager": true,
- "maintenance_manager": true
}
}
}Response samples
- 200
- 400
- 401
- 403
- 404
{- "user_id": "v9925f79q225",
- "pages": [
- {
- "page_id": "wh0hfddysxc2",
- "page_configuration": false,
- "incident_manager": true,
- "maintenance_manager": true
}, - {
- "page_id": "gwbpp3whnsrj",
- "page_configuration": false,
- "incident_manager": true,
- "maintenance_manager": true
}
]
}Get a user's permissions
Get a user's permissions
Authorizations:
path Parameters
| organization_id required | string Organization Identifier |
| user_id required | string User identifier |
Responses
Get a user's permissions
Could not authenticate
The requested resource could not be found.
Request samples
- Curl
curl https://api.statuspage.io/v1/organizations/{organization_id}/permissions/{user_id} \ -H "Authorization: OAuth your-api-key-goes-here" \ -X GET
Response samples
- 200
- 401
- 404
{- "user_id": "77p1q55flz54",
- "pages": [
- {
- "page_id": "h9p2jfzzvptm",
- "page_configuration": false,
- "incident_manager": true,
- "maintenance_manager": true
}, - {
- "page_id": "02nhc5yzclvy",
- "page_configuration": false,
- "incident_manager": true,
- "maintenance_manager": true
}
]
}Get status embed config settings
Get status embed config settings
Authorizations:
path Parameters
| page_id required | string Page identifier |
Responses
Get status embed config settings
Could not authenticate
You are not authorized to access this resource.
The requested resource could not be found.
Request samples
- Curl
curl https://api.statuspage.io/v1/pages/{page_id}/status_embed_config \ -H "Authorization: OAuth your-api-key-goes-here" \ -X GET
Response samples
- 200
- 401
- 403
- 404
{- "page_id": "string",
- "position": "string",
- "incident_background_color": "string",
- "incident_text_color": "string",
- "maintenance_background_color": "string",
- "maintenance_text_color": "string"
}Update status embed config settings
Update status embed config settings
Authorizations:
path Parameters
| page_id required | string Page identifier |
Request Body schema: application/json
| status_embed_config | object |
Responses
Update status embed config settings
Bad request
Could not authenticate
You are not authorized to access this resource.
The requested resource could not be found.
Unprocessable entity
Request samples
- Payload
- Curl
{- "status_embed_config": {
- "position": "string",
- "incident_background_color": "string",
- "incident_text_color": "string",
- "maintenance_background_color": "string",
- "maintenance_text_color": "string"
}
}Response samples
- 200
- 400
- 401
- 403
- 404
- 422
{- "page_id": "string",
- "position": "string",
- "incident_background_color": "string",
- "incident_text_color": "string",
- "maintenance_background_color": "string",
- "maintenance_text_color": "string"
}Update status embed config settings
Update status embed config settings
Authorizations:
path Parameters
| page_id required | string Page identifier |
Request Body schema: application/json
| status_embed_config | object |
Responses
Update status embed config settings
Bad request
Could not authenticate
You are not authorized to access this resource.
The requested resource could not be found.
Unprocessable entity
Request samples
- Payload
- Curl
{- "status_embed_config": {
- "position": "string",
- "incident_background_color": "string",
- "incident_text_color": "string",
- "maintenance_background_color": "string",
- "maintenance_text_color": "string"
}
}Response samples
- 200
- 400
- 401
- 403
- 404
- 422
{- "page_id": "string",
- "position": "string",
- "incident_background_color": "string",
- "incident_text_color": "string",
- "maintenance_background_color": "string",
- "maintenance_text_color": "string"
}Your page profile drives basic settings for your status page including your company name, notification preferences, and time zone.
Get a list of pages
Get a list of pages
Authorizations:
Responses
Get a list of pages
Could not authenticate
Request samples
- Curl
curl https://api.statuspage.io/v1/pages \ -H "Authorization: OAuth your-api-key-goes-here" \ -X GET
Response samples
- 200
- 401
[- {
- "id": "cmqyvl3v6r5r",
- "created_at": "2025-12-18T06:02:18Z",
- "updated_at": "2025-12-18T06:02:18Z",
- "name": "My Company Status",
- "page_description": "string",
- "headline": "string",
- "branding": "string",
- "subdomain":