# Justice (Czechia) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Look up official information about Czech companies including their legal status, representatives, and shareholders directly from the government's ARES registry and Insolvency Register. Search for companies by name or ID number to instantly access verified business details and check if they're involved in insolvency proceedings.

**Category:** Government & Public Data | **Website:** [justice.cz/](https://justice.cz/) | **Docs:** [parse.bot/marketplace/a132d337-8d0f-4130-9c9f-a6dd9f89df6f/justice-cz-api](https://parse.bot/marketplace/a132d337-8d0f-4130-9c9f-a6dd9f89df6f/justice-cz-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_legal_status

Retrieve current legal status of a company based on data from various registers. Returns simplified registration status flags with values like AKTIVNI, NEEXISTUJICI, or ZANIKLY for each register source.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | Yes | Registration number (IČO). Must be exactly 8 digits (e.g. '00177041'). Leading zeros are significant. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/get_company_legal_status \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>"}'
```

### get_company_representatives

Extract structured list of company representatives (executives, board members) from VR data. Includes statutory organs and supervisory board members. Returns empty array for subjects not in VR.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | Yes | Registration number (IČO). Must be exactly 8 digits (e.g. '00177041'). Leading zeros are significant. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/get_company_representatives \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>"}'
```

### get_economic_subject_by_ico

Retrieve full details of an economic subject by its registration number (IČO). Returns comprehensive data including address, legal form, NACE codes, and registration statuses across all registers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | Yes | Identification number (IČO) of the company. Must be exactly 8 digits (e.g. '00177041', '45274649'). Leading zeros are significant and must be preserved. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/get_economic_subject_by_ico \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>"}'
```

### get_subject_from_public_register_vr

Get detailed data specifically from the Public Register (Veřejný rejstřík / VR), including representatives, capital, shares, and historical records. Not all subjects are in VR; returns 404 for those not found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | Yes | Registration number (IČO). Must be exactly 8 digits (e.g. '00177041'). Leading zeros are significant. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/get_subject_from_public_register_vr \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>"}'
```

### search_economic_subjects

Search for economic subjects (companies) by name, IČO, address, etc. across all ARES registers. Returns paginated results. The upstream API limits results to 1000 total; overly broad queries return an error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | No | Registration number (IČO) of the subject. Comma-separated list for multiple values (e.g. '27082440,60193336'). |
| `obchodni_jmeno` | string | No | Business name or part of it to search for. |
| `pocet` | integer | No | Number of results per page. |
| `start` | integer | No | Offset for pagination (0-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/search_economic_subjects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>","obchodni_jmeno":"<string>","pocet":"<integer>","start":"<integer>"}'
```

### search_insolvency_register

Search for insolvency proceedings on the ISIR portal by IČO or company name. At least one of ico or nazev must be provided. Returns whether any proceedings were found and their count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ico` | string | No | Registration number (IČO) of the debtor. |
| `nazev` | string | No | Name of the company/debtor. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-justice-cz-api-a132d337/search_insolvency_register \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ico":"<string>","nazev":"<string>"}'
```
