How to get azure status using rest API?

Anil Guliyaan 45 Reputation points
2023-08-30T07:49:17.5266667+00:00

Hi,

how to get Azure health status like https://azure.status.microsoft/en-us/status

I need to implement REST API to get status (up/down) for overall Azure services /products region wise.

azure devOps API is available https://status.dev.azure.com/_apis/status/health?api-version=7.0-preview.1

but over all services status is not able to find. Please help

Azure Health Data Services
Azure Health Data Services
An Azure offering that provides a suite of purpose-built technologies for protected health information in the cloud.
149 questions
{count} votes

Accepted answer
  1. navba-MSFT 17,355 Reputation points Microsoft Employee
    2023-08-30T13:18:07.5133333+00:00

    @Anil Guliyaan Thanks for clarifying.

    Regarding the below ask:

    User's image

    The above window makes a call to Events - List By Subscription Id. You can collect the fiddler traces or use the browser F12 traces and check it. See the below screenshot from my machine:

    User's image

    If you want to filter based on the region, then it should be passed as a filter=region eq 'West US' as shown below. But the request should be done either using Subscription ID or Tenant ID.

    GET https://management.azure.com/subscriptions/subscriptionId/providers/Microsoft.ResourceHealth/events?api-version=2022-10-01&$filter=region eq 'West US'&queryStartTime=7/24/2020

    Hope this answers.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful