Basic health check (for load balancers)
GET
/api/v1/health
const url = 'https://internal.myscore.live/api/v1/api/v1/health';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://internal.myscore.live/api/v1/api/v1/healthLightweight liveness probe — no auth, no DB call.
Responses
Section titled “ Responses ”Service is healthy
Media type application/json
object
status
required
Overall health status
string
timestamp
required
ISO-8601 timestamp
string format: date-time
Example
{ "status": "ok", "timestamp": "2024-01-15T10:30:00.000Z"}Rate limit exceeded