Skip to main content

Get API health state

GET 

https://http-prj1234.api.cloud.diagrid.io/v1.0/healthz

This endpoint lets you get the health state of your Catalyst API.

Responses

app id is healthy

import requests

url = "https://http-prj1234.api.cloud.diagrid.io/v1.0/healthz"

payload = {}
headers = {
'dapr-api-token': '<API_KEY_VALUE>'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)
Request Collapse all
Base URL
https://http-prj1234.api.cloud.diagrid.io
Auth
ResponseClear

Click the Send API Request button above and see the response here!