# Czech ARES Business Register Lookup

> Czech ARES Business Register Lookup is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Looks up Czech company information from the ARES official business register by company name or ICO number, returning legal identity, VAT number, address, NACE codes, and registration status.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/cz/company
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/czech-ares-business-register-lookup-5e71b064
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UaRowXpsUSucNkkl6agr7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability czech-ares-business-register-lookup-5e71b064
```

Example prompt: Can you look up the Czech company 'Skoda Auto' in the ARES business register and give me their ICO, VAT number (DIC), registered address, and legal status?

## When to prefer this

Use this endpoint when you need authoritative Czech company identity data directly from the official ARES government register, particularly for KYC, due diligence, invoice validation, VAT cross-checking via EU VIES, or onboarding Czech business partners. Prefer this over general web search or third-party business databases when you need official ICO/DIC numbers and legal form with GDPR-compliant output.

## Known failure modes

- No matching company found for the given name or ICO — returns empty results list
- Invalid ICO format (not 8 digits) — likely returns validation error or empty results
- Limit parameter out of range (below 1 or above 10) — may return error or be clamped
- ARES upstream service unavailable — may return 5xx or timeout
- Stale cache (up to 24h old) — data may not reflect very recent registry changes

## How this service works

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.

## Output

Returns a list of matching Czech companies (up to the specified limit) from ARES, each with: ICO (company ID), DIC (Czech VAT number, CZ-prefixed for EU VIES cross-check), legal form, full registered address, NACE economic activity codes, per-register status (commercial register, trade license, VAT), and company creation date. Personal data is stripped for GDPR compliance. Data is cached for 24 hours.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name or ICO (8-digit Czech company id)"
      },
      "limit": {
       "type": "integer",
       "default": 3,
       "description": "Max results (1-10)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/czech-ares-business-register-lookup-5e71b064/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
