docs
UAEN
API Reference

Health

Check the health of the API. Returns a JSON object with the key "status" set to "ok".

GET/api/v1/health

Response

Successful Response
Health
import requests

url = "https://www.datalab.to/api/v1/health"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)
200Success
{
  "status": "<string>"
}