DigitalOcean Status
Live operational status of DigitalOcean's services
DigitalOcean publishes its incident and uptime data through an Atlassian Statuspage public API. The status.json endpoint returns a top-level indicator and human-readable description of overall service health. No key required, ideal for status dashboards and uptime bots.
GET https://status.digitalocean.com/api/v2/status.json
{
"page": {
"id": "w4cz49tckxhp",
"name": "DigitalOcean",
"updated_at": "2026-07-05T00:53:19.406Z"
},
"status": {
"indicator": "none",
"description": "All Systems Operational"
}
}curl "https://status.digitalocean.com/api/v2/status.json"const res = await fetch("https://status.digitalocean.com/api/v2/status.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://status.digitalocean.com/api/v2/status.json")
print(res.json())/status.jsonPROBEDLive operational status of DigitalOcean's services
/healthHealth check — confirms the service is up.
/pingLightweight ping endpoint.
/summary.jsonSummary Json — documented GET route.
/components.jsonComponents Json — documented GET route.
/incidents/unresolved.jsonUnresolved Json — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
DigitalOcean Status: common questions
Is DigitalOcean Status free to use?
Yes — DigitalOcean Status is a free developer tools API. Free tier: Free (Atlassian Statuspage public API). Whether the free tier allows commercial use is unclear — check the provider docs.
Does DigitalOcean Status need an API key?
No — DigitalOcean Status needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call DigitalOcean Status from the browser?
Yes — DigitalOcean Status returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is DigitalOcean Status up right now?
As of our last scheduled check, DigitalOcean Status is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.