Organization administrators can now receive personalized incident information in Atlassian Administration. Subscribe to System health (currently in Beta) to receive notifications if a reliability incident affects your organization
The following documentation is provided to let users of the Confluence status page programmatically access various elements on the page. Endpoints are displayed with examples using cURL and our embeded javascript widget (if available).
A wrapper for the page status api, exposing convenient actions useful for embedding your status anywhere.
https://cdn.statuspage.io/se-v2.js
Summary
Get a summary of the status page, including a status indicator, component statuses, unresolved incidents, and any upcoming or in-progress scheduled maintenances.
https://confluence.status.atlassian.com/api/v2/summary.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.summary({
success : function(data) {
console.log(data.components[0].status);
}
});
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/summary.json
Response
{
"page": {
"id": "4g2my7tbhjsq",
"name": "Confluence",
"url": "https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"status": {
"description": "Partial System Outage",
"indicator": "major"
}
"components": [
{
"created_at": "2014-05-03T01:22:07.274Z",
"description": null,
"id": "b13yz5g2cw10",
"name": "API",
"page_id": "4g2my7tbhjsq",
"position": 1,
"status": "partial_outage",
"updated_at": "2014-05-14T20:34:43.340Z"
},
{
"created_at": "2014-05-03T01:22:07.286Z",
"description": null,
"id": "9397cnvk62zn",
"name": "Management Portal",
"page_id": "4g2my7tbhjsq",
"position": 2,
"status": "major_outage",
"updated_at": "2014-05-14T20:34:44.470Z"
}
],
"incidents": [
{
"created_at": "2014-05-14T14:22:39.441-06:00",
"id": "cp306tmzcl0y",
"impact": "critical",
"incident_updates": [
{
"body": "Our master database has ham sandwiches flying out of the rack, and we're working our hardest to stop the bleeding. The whole site is down while we restore functionality, and we'll provide another update within 30 minutes.",
"created_at": "2014-05-14T14:22:40.301-06:00",
"display_at": "2014-05-14T14:22:40.301-06:00",
"id": "jdy3tw5mt5r5",
"incident_id": "cp306tmzcl0y",
"status": "identified",
"updated_at": "2014-05-14T14:22:40.301-06:00"
}
],
"monitoring_at": null,
"name": "Unplanned Database Outage",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"shortlink": "http://stspg.co:5000/Q0E",
"status": "identified",
"updated_at": "2014-05-14T14:35:21.711-06:00"
}
],
"scheduled_maintenances": [
{
"created_at": "2014-05-14T14:24:40.430-06:00",
"id": "w1zdr745wmfy",
"impact": "none",
"incident_updates": [
{
"body": "Our data center has informed us that they will be performing routine network maintenance. No interruption in service is expected. Any issues during this maintenance should be directed to our support center",
"created_at": "2014-05-14T14:24:41.913-06:00",
"display_at": "2014-05-14T14:24:41.913-06:00",
"id": "qq0vx910b3qj",
"incident_id": "w1zdr745wmfy",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.913-06:00"
}
],
"monitoring_at": null,
"name": "Network Maintenance (No Interruption Expected)",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-17T22:00:00.000-06:00",
"scheduled_until": "2014-05-17T23:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0F",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.918-06:00"
},
{
"created_at": "2014-05-14T14:27:17.303-06:00",
"id": "k7mf5z1gz05c",
"impact": "minor",
"incident_updates": [
{
"body": "Scheduled maintenance is currently in progress. We will provide updates as necessary.",
"created_at": "2014-05-14T14:34:20.036-06:00",
"display_at": "2014-05-14T14:34:20.036-06:00",
"id": "drs62w8df6fs",
"incident_id": "k7mf5z1gz05c",
"status": "in_progress",
"updated_at": "2014-05-14T14:34:20.036-06:00"
},
{
"body": "We will be performing rolling upgrades to our web tier with a new kernel version so that Heartbleed will stop making us lose sleep at night. Increased load and latency is expected, but the app should still function appropriately. We will provide updates every 30 minutes with progress of the reboots.",
"created_at": "2014-05-14T14:27:18.845-06:00",
"display_at": "2014-05-14T14:27:18.845-06:00",
"id": "z40y7398jqxc",
"incident_id": "k7mf5z1gz05c",
"status": "scheduled",
"updated_at": "2014-05-14T14:27:18.845-06:00"
}
],
"monitoring_at": null,
"name": "Web Tier Recycle",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-14T14:30:00.000-06:00",
"scheduled_until": "2014-05-14T16:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0G",
"status": "in_progress",
"updated_at": "2014-05-14T14:35:12.258-06:00"
}
]
}
Status
Get the status rollup for the whole page. This endpoint includes an indicator - one of none, minor, major, or critical, as well as a human description of the blended component status. Examples of the blended status include "All Systems Operational", "Partial System Outage", and "Major Service Outage".
https://confluence.status.atlassian.com/api/v2/status.jsonClick for example
Get the components for the page. Each component is listed along with its status - one of operational, degraded_performance, partial_outage, or major_outage.
https://confluence.status.atlassian.com/api/v2/components.jsonClick for example
Incidents are the cornerstone of any status page, being composed of many incident updates. Each incident usually goes through a progression of statuses listed below, with an impact calculated from a blend of component statuses (or an optional override).
Status:Investigating, Identified, Monitoring, Resolved, or Postmortem
Impact:None (black), Minor (yellow), Major (orange), or Critical (red)
Unresolved incidents
Get a list of any unresolved incidents. This endpoint will only return incidents in the Investigating, Identified, or Monitoring state.
https://confluence.status.atlassian.com/api/v2/incidents/unresolved.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.incidents({
filter : 'unresolved',
success: function(data) {
console.log(data.incidents[0].status);
}
})
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/incidents/unresolved.json
Response
{
"page":{
"id":"4g2my7tbhjsq",
"name":"Confluence",
"url":"https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"incidents": [
{
"created_at": "2014-05-14T14:22:39.441-06:00",
"id": "cp306tmzcl0y",
"impact": "critical",
"incident_updates": [
{
"body": "Our master database has ham sandwiches flying out of the rack, and we're working our hardest to stop the bleeding. The whole site is down while we restore functionality, and we'll provide another update within 30 minutes.",
"created_at": "2014-05-14T14:22:40.301-06:00",
"display_at": "2014-05-14T14:22:40.301-06:00",
"id": "jdy3tw5mt5r5",
"incident_id": "cp306tmzcl0y",
"status": "identified",
"updated_at": "2014-05-14T14:22:40.301-06:00"
}
],
"monitoring_at": null,
"name": "Unplanned Database Outage",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"shortlink": "http://stspg.co:5000/Q0E",
"status": "identified",
"updated_at": "2014-05-14T14:35:21.711-06:00"
}
]
}
All incidents
Get a list of the 50 most recent incidents. This includes all unresolved incidents as described above, as well as those in the Resolved and Postmortem state.
https://confluence.status.atlassian.com/api/v2/incidents.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.incidents({
success : function(data) {
console.log(data.incidents[0].name);
}
});
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/incidents.json
Response
{
"page":{
"id":"4g2my7tbhjsq",
"name":"Confluence",
"url":"https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"incidents": [
{
"created_at": "2014-05-14T14:22:39.441-06:00",
"id": "cp306tmzcl0y",
"impact": "critical",
"incident_updates": [
{
"body": "Our master database has ham sandwiches flying out of the rack, and we're working our hardest to stop the bleeding. The whole site is down while we restore functionality, and we'll provide another update within 30 minutes.",
"created_at": "2014-05-14T14:22:40.301-06:00",
"display_at": "2014-05-14T14:22:40.301-06:00",
"id": "jdy3tw5mt5r5",
"incident_id": "cp306tmzcl0y",
"status": "identified",
"updated_at": "2014-05-14T14:22:40.301-06:00"
}
],
"monitoring_at": null,
"name": "Unplanned Database Outage",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"shortlink": "http://stspg.co:5000/Q0E",
"status": "identified",
"updated_at": "2014-05-14T14:35:21.711-06:00"
},
{
"created_at": "2014-05-12T14:22:39.441-06:00",
"id": "2z5g29qrrxvl",
"impact": "minor",
"incident_updates": [
{
"body": "A small display issue with the display of the website was discovered after a recent deploy. The deploy has been rolled back and the website is again functioning correctly.",
"created_at": "2014-05-12T14:22:40.301-06:00",
"display_at": "2014-05-12T14:22:40.301-06:00",
"id": "vlzc06gtjnrl",
"incident_id": "2z5g29qrrxvl",
"status": "resolved",
"updated_at": "2014-05-12T14:22:40.301-06:00"
}
],
"monitoring_at": null,
"name": "Unplanned Database Outage",
"page_id": "4g2my7tbhjsq",
"resolved_at": "2014-05-12T14:22:40.301-06:00",
"shortlink": "http://stspg.co:5000/Q0R",
"status": "resolved",
"updated_at": "2014-05-12T14:22:40.301-06:00"
}
]
}
Scheduled maintenances
Scheduled maintenances are planned outages, upgrades, or general notices that you're working on infrastructure and disruptions may occurr. A close sibling of Incidents, each usually goes through a progression of statuses listed below, with an impact calculated from a blend of component statuses (or an optional override).
Status:Scheduled, In Progress, Verifying, or Completed
Impact:None (black), Minor (yellow), Major (orange), or Critical (red)
Upcoming scheduled maintenances
Get a list of any upcoming maintenances. This endpoint will only return scheduled maintenances still in the Scheduled state.
https://confluence.status.atlassian.com/api/v2/scheduled-maintenances/upcoming.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.scheduled_maintenances({
filter : 'upcoming',
success : function(data) {
console.log(data.scheduled_maintenances[0].scheduled_for);
}
});
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/scheduled-maintenances/upcoming.json
Response
{
"page":{
"id":"4g2my7tbhjsq",
"name":"Confluence",
"url":"https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"scheduled_maintenances": [
{
"created_at": "2014-05-14T14:24:40.430-06:00",
"id": "w1zdr745wmfy",
"impact": "none",
"incident_updates": [
{
"body": "Our data center has informed us that they will be performing routine network maintenance. No interruption in service is expected. Any issues during this maintenance should be directed to our support center",
"created_at": "2014-05-14T14:24:41.913-06:00",
"display_at": "2014-05-14T14:24:41.913-06:00",
"id": "qq0vx910b3qj",
"incident_id": "w1zdr745wmfy",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.913-06:00"
}
],
"monitoring_at": null,
"name": "Network Maintenance (No Interruption Expected)",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-17T22:00:00.000-06:00",
"scheduled_until": "2014-05-17T23:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0F",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.918-06:00"
}
]
}
Active scheduled maintenances
Get a list of any active maintenances. This endpoint will only return scheduled maintenances in the In Progress or Verifying state.
https://confluence.status.atlassian.com/api/v2/scheduled-maintenances/active.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.scheduled_maintenances({
filter : 'active',
success : function(data) {
console.log(data.scheduled_maintenances[0].status);
}
});
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/scheduled-maintenances/active.json
Response
{
"page":{
"id":"4g2my7tbhjsq",
"name":"Confluence",
"url":"https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"scheduled_maintenances": [
{
"created_at": "2014-05-14T14:27:17.303-06:00",
"id": "k7mf5z1gz05c",
"impact": "minor",
"incident_updates": [
{
"body": "Scheduled maintenance is currently in progress. We will provide updates as necessary.",
"created_at": "2014-05-14T14:34:20.036-06:00",
"display_at": "2014-05-14T14:34:20.036-06:00",
"id": "drs62w8df6fs",
"incident_id": "k7mf5z1gz05c",
"status": "in_progress",
"updated_at": "2014-05-14T14:34:20.036-06:00"
},
{
"body": "We will be performing rolling upgrades to our web tier with a new kernel version so that Heartbleed will stop making us lose sleep at night. Increased load and latency is expected, but the app should still function appropriately. We will provide updates every 30 minutes with progress of the reboots.",
"created_at": "2014-05-14T14:27:18.845-06:00",
"display_at": "2014-05-14T14:27:18.845-06:00",
"id": "z40y7398jqxc",
"incident_id": "k7mf5z1gz05c",
"status": "scheduled",
"updated_at": "2014-05-14T14:27:18.845-06:00"
}
],
"monitoring_at": null,
"name": "Web Tier Recycle",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-14T14:30:00.000-06:00",
"scheduled_until": "2014-05-14T16:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0G",
"status": "in_progress",
"updated_at": "2014-05-14T14:35:12.258-06:00"
}
]
}
All scheduled maintenances
Get a list of the 50 most recent scheduled maintenances. This includes scheduled maintenances as described in the above two endpoints, as well as those in the Completed state.
https://confluence.status.atlassian.com/api/v2/scheduled-maintenances.jsonClick for example
## using JS widget
<script type="text/javascript" src="https://cdn.statuspage.io/se-v2.js"></script>
<script>
var sp = new StatusPage.page({ page : '4g2my7tbhjsq' });
sp.scheduled_maintenances({
success : function(data) {
console.log(data.scheduled_maintenances[0].name);
}
});
</script>
## using cURL
curl https://confluence.status.atlassian.com/api/v2/scheduled-maintenances.json
Response
{
"page":{
"id":"4g2my7tbhjsq",
"name":"Confluence",
"url":"https://confluence.status.atlassian.com",
"updated_at": "2025-12-20T11:26:07Z"
},
"scheduled_maintenances": [
{
"created_at": "2014-05-14T14:24:40.430-06:00",
"id": "w1zdr745wmfy",
"impact": "none",
"incident_updates": [
{
"body": "Our data center has informed us that they will be performing routine network maintenance. No interruption in service is expected. Any issues during this maintenance should be directed to our support center",
"created_at": "2014-05-14T14:24:41.913-06:00",
"display_at": "2014-05-14T14:24:41.913-06:00",
"id": "qq0vx910b3qj",
"incident_id": "w1zdr745wmfy",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.913-06:00"
}
],
"monitoring_at": null,
"name": "Network Maintenance (No Interruption Expected)",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-17T22:00:00.000-06:00",
"scheduled_until": "2014-05-17T23:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0F",
"status": "scheduled",
"updated_at": "2014-05-14T14:24:41.918-06:00"
},
{
"created_at": "2014-05-14T14:27:17.303-06:00",
"id": "k7mf5z1gz05c",
"impact": "minor",
"incident_updates": [
{
"body": "Scheduled maintenance is currently in progress. We will provide updates as necessary.",
"created_at": "2014-05-14T14:34:20.036-06:00",
"display_at": "2014-05-14T14:34:20.036-06:00",
"id": "drs62w8df6fs",
"incident_id": "k7mf5z1gz05c",
"status": "in_progress",
"updated_at": "2014-05-14T14:34:20.036-06:00"
},
{
"body": "We will be performing rolling upgrades to our web tier with a new kernel version so that Heartbleed will stop making us lose sleep at night. Increased load and latency is expected, but the app should still function appropriately. We will provide updates every 30 minutes with progress of the reboots.",
"created_at": "2014-05-14T14:27:18.845-06:00",
"display_at": "2014-05-14T14:27:18.845-06:00",
"id": "z40y7398jqxc",
"incident_id": "k7mf5z1gz05c",
"status": "scheduled",
"updated_at": "2014-05-14T14:27:18.845-06:00"
}
],
"monitoring_at": null,
"name": "Web Tier Recycle",
"page_id": "4g2my7tbhjsq",
"resolved_at": null,
"scheduled_for": "2014-05-14T14:30:00.000-06:00",
"scheduled_until": "2014-05-14T16:30:00.000-06:00",
"shortlink": "http://stspg.co:5000/Q0G",
"status": "in_progress",
"updated_at": "2014-05-14T14:35:12.258-06:00"
}
]
}