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

# SIC Sanctions

> Search every final fine Colombia's Superintendencia de Industria y Comercio has imposed for consumer-protection violations since 2013, by party, sector, case, resolution or date.

The Superintendencia de Industria y Comercio (SIC) investigates and fines companies and merchants that break Colombia's consumer-protection rules: usury, missing credit information, misleading advertising, warranty refusals, unfair terms. This is its list of the fines that are final (en firme), about 4,000 since 2013, from its consumer-protection investigations directorate: the case, the resolution that imposed the fine, the date, the party fined, the amount, the conduct and the sector. Financing services, tourism, vehicles, retail and e-commerce lead it.

Search by the party's name, the sector, the case number, the resolution number or the date, or with free text over the party, the conduct and the sector.

<Note>
  The whole source, organized and ready to query: every endpoint on this page answers in milliseconds. Every response carries `as_of`: how current the data is. [How datasets work](/datasets).
</Note>

`POST /co/sic-sanctions/sanctions-search/v1` <a className="dataset-pill" href="/datasets">Dataset</a>

One search over every final fine, filtered by party, sector, case, resolution or date.

| Field               | Type    | Notes                                                                                                                                       |
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| `query`             | string  | Optional words matched against the party, the conduct and the sector.                                                                       |
| `party`             | string  | Optional name of the party fined, matched from the start. Case and accents are ignored.                                                     |
| `sector`            | string  | Optional sector, e.g. `Servicios de financiación`, `Turismo`, `Comercio electrónico`, matched from the start. Case and accents are ignored. |
| `case_number`       | string  | Optional case (radicado), e.g. `24 503714` or `24-503714`.                                                                                  |
| `resolution_number` | string  | Optional number of the resolution that imposed the fine, e.g. `40639`.                                                                      |
| `issued_from`       | string  | Optional: only resolutions issued on or after this date, `yyyy-mm-dd`.                                                                      |
| `issued_to`         | string  | Optional: only resolutions issued on or before this date, `yyyy-mm-dd`.                                                                     |
| `page`              | integer | 1-based page number. Default `1`.                                                                                                           |
| `per_page`          | integer | Results per page (1-100). Default `20`.                                                                                                     |

```bash theme={"dark"}
curl https://api.croma.run/co/sic-sanctions/sanctions-search/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "query": "usura", "sector": "Servicios de financiación" }'
```

Returns `as_of` (how current the data is), the applied filters, `total` and `total_is_exact`, `page`, `per_page`, `total_pages`, `count` and `results[]`, most recent first. Every result carries `id`, `case_number` (the radicado, e.g. `24 503714`), `resolution_number`, `issued_at`, `year`, `sanctioned_party` (the person or company fined), `amount_cop` (the fine in Colombian pesos), `conduct` (in the Superintendencia's words), `sector` and `entries` (how many times the Superintendencia's list carries it; 1 almost always).

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