API Reference
Health
Check the health of the API. Returns a JSON object with the key "status" set to "ok".
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>"
}