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

# Superfinanciera

> Query jurisdictional case filings and action history from Colombia's Superfinanciera.

Queries jurisdictional case filings and their action history from the
Superintendencia Financiera de Colombia.

`POST /co/superfinanciera/complaints/v1`

| Field             | Type   | Notes                                                 |
| ----------------- | ------ | ----------------------------------------------------- |
| `document_number` | string | **Required.** 5-20 digits.                            |
| `filing_number`   | string | **Required.** Exactly 10 digits (`numeroRadicación`). |

```bash theme={"dark"}
curl https://api.croma.run/co/superfinanciera/complaints/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "document_number": "79696131", "filing_number": "2024051440" }'
```

<Note>
  This search 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`. No matches returns an empty `complaints` array, not an error.
</Note>

<Card title="Full reference" icon="code" href="/api-reference/overview">
  Schemas, response fields, and an interactive playground.
</Card>
