Official Czech business register lookup via ARES (Ministry of Finance, ares
Official Czech business register lookup via ARES (Ministry of Finance, ares.gov.cz). Query: ?q=skoda or ?q=00177041 (company name or 8-digit ICO), optional limit (1-10). Returns ICO, DIC (CZ VAT number, cross-checkable in EU VIES), legal form, registered address, NACE activity codes, per-register status (commercial, trade, VAT) and creation date. Company data only, personal data stripped (GDPR). 24h cache.
3000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 1,
"q": "skoda auto"
},
"type": "http"
},
"output": {
"example": {
"results": [
{
"address": {
"city": "Mladá Boleslav",
"country": "CZ",
"postal_code": "29301",
"text": "tř. Václava Klementa 869, Mladá Boleslav II, 29301 Mladá Boleslav"
},
"date_created": "1990-11-20",
"date_dissolved": null,
"dic": "CZ00177041",
"ico": "00177041",
"last_updated": "2026-07-10",
"legal_form": "121",
"nace_codes": [
"29100",
"45200",
"47740",
"69200",
"74300",
"77110"
],
"name": "Škoda Auto a.s.",
"natural_person": false,
"registrations": {
"dph": "AKTIVNI",
"res": "AKTIVNI",
"ros": "AKTIVNI",
"rzp": "AKTIVNI",
"sd": "ZANIKLY",
"vr": "AKTIVNI"
}
}
],
"source": "ARES, Czech Ministry of Finance (ares.gov.cz), official economic-subject register, open data; personal data of natural persons removed",
"total_results": 12
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"default": 3,
"description": "Max results (1-10)",
"type": "integer"
},
"q": {
"description": "Company name or ICO (8-digit Czech company id)",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/cz/company" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/cz/company");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/cz/company")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3978.json, and this resource appears in /discovery/resources and /discovery/search.