Skip to main content
GET
/
integration-services
/
ar_gueno_holder_intelligence_service
/
health
Service Health
curl --request GET \
  --url http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/health \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data.integrationCode": "<string>",
  "data.status": "<string>",
  "data.corpusFreshnessDate": {}
}

Overview

Returns whether the holder intelligence backend is reachable and, when available, the latest materialized snapshot date of the corpus. No billing.

Endpoint

GET https://api.gu1.ai/api/integration-services/ar_gueno_holder_intelligence_service/health

Authentication

Authorization: Bearer YOUR_API_KEY

Response

success
boolean
Always true on HTTP 200 for this route.
data.integrationCode
string
ar_gueno_holder_intelligence_service
data.status
string
ok when holder-score meta is reachable; degraded when the backend is not configured or meta fetch failed.
data.corpusFreshnessDate
string | null
Latest corpus snapshot date (YYYY-MM-DD) when status is ok; otherwise null.

Example

curl -s \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/integration-services/ar_gueno_holder_intelligence_service/health"
{
  "success": true,
  "data": {
    "integrationCode": "ar_gueno_holder_intelligence_service",
    "status": "ok",
    "corpusFreshnessDate": "2026-06-24"
  }
}