Skip to main content
GET
/
integration-services
/
ar_gueno_holder_intelligence_service
/
cuits
/
:cuit
/
accounts-count
Accounts Count by CUIT
curl --request GET \
  --url http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data.integrationCode": "<string>",
  "data.cuit": "<string>",
  "data.found": true,
  "data.snapshotDate": {},
  "data.firstSeen": {},
  "data.lastSeen": {},
  "data.isNew": true,
  "data.cbuCount": 123,
  "data.cvuCount": 123,
  "data.totalAccounts": 123
}

Overview

Returns current CBU and CVU account totals for a holder, plus snapshot metadata. One billable request per successful call when the catalog product has a non-zero price.

Endpoint

GET https://api.gu1.ai/api/integration-services/ar_gueno_holder_intelligence_service/cuits/{cuit}/accounts-count

Path parameters

cuit
string
required
Argentina CUIT/CUIL β€” 11 digits, no dashes.

Response

success
boolean
true on HTTP 200.
data.integrationCode
string
ar_gueno_holder_intelligence_service
data.cuit
string
Requested CUIT.
data.found
boolean
Always true on HTTP 200 success (use Exists for a non-billable membership check).
data.snapshotDate
string | null
Corpus snapshot date (YYYY-MM-DD) for the totals.
data.firstSeen
string | null
First date the holder appeared in corpus (YYYY-MM-DD).
data.lastSeen
string | null
Last date the holder was observed (YYYY-MM-DD).
data.isNew
boolean
Whether the holder is flagged as new in the latest snapshot.
data.cbuCount
number
Current CBU account count (non-negative integer).
data.cvuCount
number
Current CVU account count (non-negative integer).
data.totalAccounts
number
cbuCount + cvuCount.

Errors

HTTPerror.codeWhen
404CUIT_NOT_FOUNDCUIT not in corpus
402INSUFFICIENT_BALANCECredits or pack exhausted
503SERVICE_UNAVAILABLEHolder backend unavailable
500INTERNAL_ERRORUnexpected error

Example

curl -s \
  -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.gu1.ai/api/integration-services/ar_gueno_holder_intelligence_service/cuits/20384648798/accounts-count"
{
  "success": true,
  "data": {
    "integrationCode": "ar_gueno_holder_intelligence_service",
    "cuit": "20384648798",
    "found": true,
    "snapshotDate": "2026-06-24",
    "firstSeen": "2024-01-15",
    "lastSeen": "2026-06-24",
    "isNew": false,
    "cbuCount": 3,
    "cvuCount": 2,
    "totalAccounts": 5
  }
}

Rules mapping

API fieldRule field
cbuCountservices.holder_intelligence.cbu_quantity
cvuCountservices.holder_intelligence.cvu_quantity
totalAccountsservices.holder_intelligence.total_accounts
foundservices.holder_intelligence.found
snapshotDateservices.holder_intelligence.snapshot_date