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

# SICAAC

> Look up natural-person insolvency proceedings registered in Colombia's SICAAC system by document, with status, parties and assigned operator for each case.

Looks up natural-person insolvency proceedings (insolvencia de persona natural)
registered in the Ministerio de Justicia's SICAAC system.

`POST /co/sicaac/insolvency-cases/v1`

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

```bash theme={"dark"}
curl https://api.croma.run/co/sicaac/insolvency-cases/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "document_number": "1020745812" }'
```

The response echoes the document that was looked up and lists every insolvency
case registered against it:

| Field                  | Notes                                                                     |
| ---------------------- | ------------------------------------------------------------------------- |
| `document_type`        | Document type the lookup used.                                            |
| `document_type_label`  | Readable label for `document_type`, e.g. "CÉDULA DE CIUDADANÍA".          |
| `document_number`      | Document number the lookup used.                                          |
| `cases`                | Insolvency cases found. Empty array when the person has none.             |
| `cases[].entity_name`  | Entity that registered the case, such as a conciliation centre or notary. |
| `cases[].party_type`   | Role the person holds in the case, e.g. `DEUDOR`.                         |
| `cases[].request_date` | Filing date as `YYYY-MM-DD`, or `null` when the source omits it.          |

<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">
  Schemas, all response fields, and an interactive playground.
</Card>
