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

# Contaduría

> Check whether a person or entity is a delinquent debtor to the Colombian State, by document.

Checks whether a person or entity is a delinquent debtor to the Colombian State,
from the Contaduría General de la Nación's register (Boletín de Deudores Morosos
del Estado).

`POST /co/contaduria/state-delinquent-debtors/v1`

| Field             | Type   | Notes                                                                                   |
| ----------------- | ------ | --------------------------------------------------------------------------------------- |
| `document_number` | string | **Required.** 3-30 chars.                                                               |
| `document_type`   | enum   | Colombian document type (`CC`, `NIT`, `TI`, `CE`, `PA`, `RC`, `PPT`). Defaults to `CC`. |

```bash theme={"dark"}
curl https://api.croma.run/co/contaduria/state-delinquent-debtors/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "document_number": "79015438" }'
```

The response returns two verdicts, each with the source's verbatim wording:

| Field                     | Notes                                                                              |
| ------------------------- | ---------------------------------------------------------------------------------- |
| `reported`                | Headline verdict: `true` if reported under either law, `false` when clean.         |
| `deudor_moroso`           | Deuda morosa con el Estado (Ley 901 de 2004), as `{ reported, message }`.          |
| `incumplimiento_acuerdos` | Incumplimiento de acuerdos de pago (Ley 1066 de 2006), as `{ reported, message }`. |
| `checked_at`              | Consultation timestamp (ISO 8601, UTC), or `null` if absent.                       |

<Note>
  This lookup can take longer than a typical request. It's an
  [async job](/async-jobs). By default the request waits inline and returns
  `{ data }`, or you can poll / use a `callback_url`. The accepted
  `document_type` values are enumerated in the API reference.
</Note>

<Card title="Full reference" icon="code" href="/api-reference/overview">
  Accepted document types, schemas, and an interactive playground.
</Card>
