Use session cookies inside the app, or provide Authorization: Bearer or X-API-KEY for external requests.
Leave empty to use session cookies.
Server-to-server calls set the X-API-KEY header.
Health — Service health status and auth visibility.
curl -X GET '/api/v1/health'
fetch('/api/v1/health', {
method: 'GET',
headers: {}
})
.then(r => r.json()); import requests
url = "/api/v1/health"
headers = {}
response = requests.get(url, headers=headers)
print(response.status_code)
print(response.text)