> ## 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.

# CPF — CUIT in-list

> Chequeo barato de membresía CUIT en CPF con mode, conteos e importes acumulados opcionales.

## Request

```http theme={null}
GET /api/integration-services/ar_gueno_cpf_service/cuits/:cuit/in-list?mode=both&availableCount=true
```

| Query            | Rule                                                                                                                    |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------- |
| `mode`           | `recipient` \| `initiator` \| `both` (default)                                                                          |
| `availableCount` | `true` (default) = COUNT + importes; `false` = solo EXISTS (`count` / conteos por rol / importes en `null`, más rápido) |

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "cuit": "30703088534",
    "mode": "both",
    "inList": true,
    "count": 14,
    "asRecipientCount": 2,
    "asInitiatorCount": 12,
    "totalAmount": "1015000.00",
    "asRecipientTotalAmount": "35000.00",
    "asInitiatorTotalAmount": "980000.00"
  }
}
```

Los importes son strings decimales (misma moneda del corpus CPF). Con `availableCount=false`, `count`, conteos por rol y todos los `*Amount` son `null`.

**Billing:** free.
