Health
curl --request GET \
--url https://api.lightdrift.ai/healthimport requests
url = "https://api.lightdrift.ai/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.lightdrift.ai/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"service": "lightdrift",
"mode": "retrieval-only"
}Service liveness check. No authentication required.
GET
/
health
Health
curl --request GET \
--url https://api.lightdrift.ai/healthimport requests
url = "https://api.lightdrift.ai/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.lightdrift.ai/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"service": "lightdrift",
"mode": "retrieval-only"
}Response
200 - application/json
Service is up.