15 Sep 2026 03:39 PM
Anyone know the url to get the JSON back for the values in the public Dynatrace Status IO page? Here is the page, rendering in HTML though, https://dynatrace.status.io/
I am looking to get the JSON response from what status.io calls its Public Status API https://kb.status.io/developers/public-status-api/ but cannot find the correct path to get the Dynatrace status using this method.
Thank you for any information,
Chris
16 Sep 2026 01:18 AM
@cusack_christop You can try the below
GET https://dynatrace.status.io/1.0/status/<statuspage_id>
curl -H "Accept: application/json" \
https://dynatrace.status.io/1.0/status/546d8cb6af8407b6730000cb
16 Sep 2026 05:57 AM
In addition to @p_devulapalli , another easy option is:
The ID is embedded in the HTML of https://dynatrace.status.io/. To find it:
Open https://dynatrace.status.io/ in your browser, Right-click → View Page Source
Search for statuspage_id, status_page_id
https://api.status.io/1.0/status/{YOUR_ID_HERE}
This returns JSON with:
Thanks,
Sujit
Featured Posts