> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Verificar CUIT en el corpus

> Comprueba si un CUIT existe en el corpus de titulares — found true/false con HTTP 200. Sin cobro.

## Endpoint

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

## Parámetros de path

<ParamField path="cuit" type="string" required>
  CUIT/CUIL Argentina — **11 dígitos**, sin guiones.
</ParamField>

## Respuesta

<ResponseField name="data.found" type="boolean">
  `true` si el titular está en corpus; `false` si no (siempre HTTP 200).
</ResponseField>

<ResponseField name="data.snapshotDate" type="string | null">
  Fecha de snapshot opcional cuando `found` es `true`.
</ResponseField>

## Errores

| HTTP | `error.code`          |
| ---- | --------------------- |
| 503  | `SERVICE_UNAVAILABLE` |
| 500  | `INTERNAL_ERROR`      |

## Ejemplo — no encontrado (HTTP 200)

```json theme={null}
{
  "success": true,
  "data": {
    "integrationCode": "ar_gueno_holder_intelligence_service",
    "cuit": "20999999999",
    "found": false
  }
}
```
