API Reference
Api Health
Check the health of the API, given an API key.
Authorizations
X-API-KeystringheaderrequiredYour API key for authentication
Cookies
wos-sessionstringcookieSession cookie
access_tokenstringcookieAccess token cookie
datalab_active_teamstringcookieActive team cookie
Response
Successful Response
Api Health
import requests
url = "https://www.datalab.to/api/v1/health/api"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)200Success
{
"status": "<string>"
}