Discover/justice.cz API
live

justice.cz APIjustice.cz

Access official Czech company data from ARES and the Insolvency Register. Search by IČO or name, retrieve legal status, representatives, and insolvency proceedings.

Endpoints
6
Updated
10d ago
Try it
Registration number (IČO) of the subject. Comma-separated list for multiple values (e.g. '
Number of results per page.
Offset for pagination (0-based).
Business name or part of it to search for.
api.parse.bot/scraper/70e4b767-5c28-4851-8d3e-2edef33556c3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/70e4b767-5c28-4851-8d3e-2edef33556c3/search_economic_subjects' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "pocet": 20,
  "start": 0,
  "obchodni_jmeno": "Alza"
}'
All endpoints · 6 totalclick to expand

Search for economic subjects (companies) by name, IČO, address, etc. across all ARES registers. Returns paginated results.

Input
ParamTypeDescription
icostringRegistration number (IČO) of the subject. Comma-separated list for multiple values (e.g. '27082440,60193336').
pocetintegerNumber of results per page.
startintegerOffset for pagination (0-based).
obchodni_jmenostringBusiness name or part of it to search for.
Response
{
  "type": "object",
  "fields": {
    "pocetCelkem": "integer total count of matching subjects",
    "ekonomickeSubjekty": "array of economic subject objects with ico, obchodniJmeno, sidlo, seznamRegistraci"
  },
  "sample": {
    "data": {
      "pocetCelkem": 2,
      "ekonomickeSubjekty": [
        {
          "ico": "27082440",
          "sidlo": {
            "textovaAdresa": "Jankovcova 1522/53, Holešovice, 17000 Praha 7"
          },
          "obchodniJmeno": "Alza.cz a.s.",
          "seznamRegistraci": {
            "stavZdrojeVr": "AKTIVNI"
          }
        }
      ]
    },
    "status": "success"
  }
}

About the justice.cz API

This API exposes 6 endpoints for querying official Czech business registry data from ARES and the ISIR insolvency portal. Use get_economic_subject_by_ico to pull a full company profile — address, legal form, NACE codes, and cross-register statuses — by an 8-digit IČO. Other endpoints surface representative lists, public register filings, legal status flags, and active insolvency proceedings for any registered Czech economic subject.

Company Search and Lookup

search_economic_subjects accepts a comma-separated list of IČO values, a partial business name (obchodni_jmeno), or address fragments, and returns a paginated result set with pocetCelkem (total match count) alongside an ekonomickeSubjekty array. Each array entry includes the ico, obchodniJmeno, sidlo (registered address), and seznamRegistraci (registration status summary). Pagination is controlled with pocet (page size) and start (0-based offset). get_economic_subject_by_ico returns the same core fields plus richer detail — NACE activity codes and per-register status values like stavZdrojeVr and stavZdrojeRes — for a single IČO.

Legal Status and Public Register Records

get_company_legal_status returns a compact status object whose fields (stavZdrojeVr, stavZdrojeRes, stavZdrojeRzp, and others) map each ARES sub-register to a value such as AKTIVNI, NEEXISTUJICI, or Z. This is useful for quickly flagging whether a company is still active without parsing a full profile. get_subject_from_public_register_vr goes deeper: it returns zaznamy, an array of Public Register (Veřejný rejstřík) records containing statutarniOrgany (statutory organs), ostatniOrgany, akcie (shares), and zakladniKapital (registered capital), including historical entries.

Representatives and Insolvency

get_company_representatives processes VR data and returns a structured representatives array. Each entry carries typ, jmeno, prijmeni, funkce (role), organ (board), adresa, and datum_narozeni. This is the most direct path to a list of current executives or board members without parsing raw register records yourself. search_insolvency_register queries the ISIR portal by ico or nazev (at least one required) and returns a found boolean, a count of proceedings, and the url of the results page — sufficient to check whether a company has any active or historical insolvency filings.

Common use cases
  • Automated KYC pipeline that checks a supplier's legal status via get_company_legal_status before onboarding
  • Due diligence tool that pulls representative names and birth dates from get_company_representatives for sanctions screening
  • Credit risk workflow that flags companies with active insolvency proceedings using search_insolvency_register
  • Business directory enrichment that resolves a Czech company name to a full address and IČO via search_economic_subjects
  • Legal research application that retrieves historical share structure and registered capital from get_subject_from_public_register_vr
  • Compliance dashboard that monitors a watchlist of IČO values for changes in ARES registration status flags
  • Vendor verification service that cross-checks submitted IČO against official ARES data to confirm business name and address
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does justice.cz have an official developer API?+
Yes. The Czech Ministry of Justice operates the ARES REST API (ares.gov.cz/ekonomicke-subjekty-v-be) and the ISIR web services for the insolvency register. Both are public but require navigating separate documentation, differing data formats, and occasional schema changes. This Parse API normalizes responses across both sources into a consistent structure.
What does `get_company_representatives` return, and does it include historical representatives?+
It returns the representatives array derived from Public Register (VR) data. Each entry includes the person's name, role (funkce), organ (organ), address, and date of birth. The underlying VR data via get_subject_from_public_register_vr does contain historical zaznamy records, but get_company_representatives surfaces the structured list as parsed from those records — whether historical entries appear depends on what the VR record includes for that IČO.
IČO values in Czech records sometimes have leading zeros — does the API handle that?+
Yes. All endpoints that accept an ico parameter require exactly 8 digits, and leading zeros are significant. For example, 00177041 and 177041 are treated as different values. Always zero-pad IČO values to 8 characters before querying.
Does the API return financial statements or annual report data for Czech companies?+
Not currently. The API covers identity data, legal status, representatives, share structure, registered capital, and insolvency status. Financial statements filed in the Collection of Deeds (Sbírka listin) are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting that register.
Can I search for sole traders (OSVČ) or non-profit organizations, or only companies?+
The search_economic_subjects and get_economic_subject_by_ico endpoints query ARES, which covers all registered economic subjects — including sole traders, associations, and public institutions — not just companies. However, the get_subject_from_public_register_vr and get_company_representatives endpoints draw from the Veřejný rejstřík, which covers entities required to register there (primarily companies and certain other legal persons). Sole traders not enrolled in VR will return no data from those two endpoints. You can fork the API on Parse and revise it to target the Živnostenský rejstřík endpoint for richer sole trader data.
Page content last updated . Spec covers 6 endpoints from justice.cz.
Related APIs in Government PublicSee all →
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
data.lime.bike API
Access real-time availability data for Lime bikes and scooters, including station locations, vehicle status, system alerts, and geofencing zones across multiple cities. Monitor micromobility inventory and service information to find nearby vehicles or plan your trips effectively.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
mahatenders.gov.in API
Access Maharashtra government tenders from mahatenders.gov.in, browsing them by closing date or by organization with full tender details and pagination support. Find and review procurement opportunities across different government departments in one place.
justice.cz API — Czech Company & Insolvency Data · Parse