nvNeuralVerge
Corporate registry

Czech Business Register API — Company Search

The Czech Business Register is public and complete, and it is also entirely in Czech, behind a search form that was not designed for machines.

You send
A company name or Czech identification number
You get back
Structured results from the register's search
Coverage
the Czech Republic — entities on the Czech Business Register.
Price
5 pts$5 per 1,000
Charged only when the record resolves. A lookup that finds nothing is not billed.
Comparison

Ways to get this data

Three approaches teams use today, and where each one runs into trouble.

ApproachWhat it takesCostTrade-off
the Czech Business Register directlyUse the justice.cz search form and read the results in CzechUsually free, sometimes per-documentA different interface, language and data shape for every country you add
Collecting it yourselfBuild and host a crawler per register, then keep each one aliveInfrastructure and maintenanceRegisters change their pages without warning, and nobody is on the hook when yours breaks
NeuralVergeOne request, the same shape as every other source in the catalog$5 per 1,000, misses not billedCovers the Czech Republic — other countries are separate sources with the same request format
Response

What you get back

Every field the response returns.

FieldTypeDescription
companiesarrayMatching entities from the register's search.
companies[].entity_namestringRegistered name of the entity.
companies[].icostringCzech identification number — the key for any further lookup.
companies[].file_numberstringCourt file number.
companies[].registration_datestringDate of registration.
companies[].addressstringRegistered address.
companies[].full_statement_urlstringLink to the full register extract.
companies[].documents_urlstringLink to the entity's filed documents.
One response envelope

Every source answers in the same shape: a session id, a readable human summary, a structured machine object and the points the call consumed. Learn it once and it holds across every source in the catalog.

Integration

How to run it

The same lookup works from the app, the API, or as a tool an agent can call mid-task.

A JSON schema passed as extract_schema_json pins the response shape, which is why one endpoint serves every register in the catalog — only the URL and the schema change. The Get API Code button in the app hands you the complete command with the schema already filled in.

curl -X POST https://api.neuralverge.ai/functions/v1/run-extract \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://or.justice.cz/ias/ui/rejstrik-$firma?nazev=example",
    "instructions": "Extract data from the Czech Business Register",
    "settings": {
      "country_code": "us",
      "extract_schema_json": "{ ... }"
    }
  }'
Use cases

What teams use it for

Where this field shows up in an actual workflow.

Name to identifier

Turn a company name into the identification number the rest of your checks need.

Disambiguating similar names

See the candidates side by side instead of guessing which one is meant.

Onboarding checks

Confirm a Czech counterparty exists on the register at all.

List building

Resolve a spreadsheet of Czech company names in one pass.

Coverage & limits

Coverage, freshness and limits

What this source covers, how fresh it is, and where it stops.

Coverage

the Czech Republic — entities on the Czech Business Register.

Freshness

Read at request time, so the answer reflects the register as it stands when you ask.

Handling

the Czech Business Register is a public register. Every response carries the source URL it was read from and a session id you can trace.

What it will not do
  • It returns what the search results page shows, not the full entity file.
  • A common name can return several candidates — the identification number is what disambiguates.
  • The register publishes in Czech.
FAQ

Questions, answered

The eight-digit identification number assigned to Czech entities. It is the identifier you want out of a search, because it resolves to exactly one entity.

Related

Related sources

Try czech business register search on your own data

One request format across every source in the catalog.

Get started