> ## 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 Colombian natural-person insolvency cases by document.

Looks up natural-person insolvency cases (insolvencia de persona natural) from
the Ministerio de Justicia's SICAAC system.

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

| Field             | Type   | Notes                                      |
| ----------------- | ------ | ------------------------------------------ |
| `document_number` | string | **Required.** 3-30 chars.                  |
| `document_type`   | enum   | Colombian document type. Defaults to `CC`. |

```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" }'
```

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