/healthHealth Check
Quick health check that returns API status. Requires no authentication.
Only in Galen
Lightweight health check endpoint. Use this to verify API connectivity before making substantive queries.
Response Schema
statusstringService status — "ok" when healthyservicestringService identifiertimestampstringCurrent server time in ISO 8601 formatExample Request
import requests
resp = requests.get("https://research.usegalen.com/api/v1/health")
data = resp.json()
print(f"Status: {data['status']} ({data['service']}) at {data['timestamp']}")Example Response
{
"status": "ok",
"service": "galen-api",
"timestamp": "2026-03-06T12:00:00Z"
}Try It
GET https://research.usegalen.com/api/v1/healthRelated Endpoints