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>'import requests
url = "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data.integrationCode": "<string>",
"data.cuit": "<string>",
"data.found": true,
"data.snapshotDate": {},
"data.isNew": true,
"data.cbuCount": 123,
"data.cvuCount": 123,
"data.totalAccounts": 123
}API Reference
Accounts Count by CUIT
Get current CBU and CVU account totals for an Argentina CUIT via the gu1 holder intelligence marketplace service β billable per request when priced.
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>'import requests
url = "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://api.gu1.ai/integration-services/ar_gueno_holder_intelligence_service/cuits/:cuit/accounts-count")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data.integrationCode": "<string>",
"data.cuit": "<string>",
"data.found": true,
"data.snapshotDate": {},
"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
string
required
Argentina CUIT/CUIL β 11 digits, no dashes.
Response
boolean
true on HTTP 200.string
ar_gueno_holder_intelligence_servicestring
Requested CUIT.
string | null
Corpus snapshot date (
YYYY-MM-DD) for the totals.boolean
Whether the holder is flagged as new in the latest snapshot.
number
Current CBU account count (non-negative integer).
number
Current CVU account count (non-negative integer).
number
cbuCount + cvuCount.Errors
| HTTP | error.code | When |
|---|---|---|
| 404 | CUIT_NOT_FOUND | CUIT not in corpus |
| 402 | INSUFFICIENT_BALANCE | Credits or pack exhausted |
| 503 | SERVICE_UNAVAILABLE | Holder backend unavailable |
| 500 | INTERNAL_ERROR | Unexpected 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",
"isNew": false,
"cbuCount": 3,
"cvuCount": 2,
"totalAccounts": 5
}
}
Rules mapping
| API field | Rule field |
|---|---|
cbuCount | services.holder_intelligence.cbu_quantity |
cvuCount | services.holder_intelligence.cvu_quantity |
totalAccounts | services.holder_intelligence.total_accounts |
found | services.holder_intelligence.found |
snapshotDate | services.holder_intelligence.snapshot_date |
Was this page helpful?