Service Health
Get current service health
Section titled “Get current service health”Sample request
GET /api/v1/service_health HTTP/1.1Host: api.example.comAuthorization: Bearer YOUR_API_TOKENcurl "https://api.example.com/api/v1/service_health" \ -u "username:password"$username = "username"$password = "password"$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $username, $password)))
$headers = @{ "Authorization" = "Basic $base64AuthInfo"}
Invoke-RestMethod -Uri "https://api.example.com/api/v1/service_health" ` -Method GET ` -Headers $headers{ "a19": { "queue_size": 24, "last_success": "2026-07-25T18:05:51.099Z" }, "oru": { "queue_size": 11, "last_success": "2026-07-25T18:05:51.099Z" }}