# Slovak Business Registry (RPO) Search

> Slovak Business Registry (RPO) Search 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-13).

Searches the official Slovak business registry (RPO) by company name or ICO number, returning company details including legal form, address, and establishment dates.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/sk/company
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/slovak-business-registry-rpo-search-69823d15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vdixe3nt6abuazv3QZImh

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 slovak-business-registry-rpo-search-69823d15
```

Example prompt: Can you look up the Slovak company with ICO 31333532 in the official business registry and tell me its current legal name, address, legal form, and whether it's still active?

## When to prefer this

Use this endpoint when you need authoritative Slovak company data from the official RPO registry, including historic name matching and GDPR-safe results. Prefer over generic web search when structured corporate data (ICO, legal form, address, dates) is needed for Slovak entities specifically. For Czech companies, use the sibling ARES endpoint instead.

## Known failure modes

- Query string too short (fewer than 3 characters for name search) — returns error
- ICO not exactly 8 digits — may return no results
- Company not found in RPO — returns empty result list
- Upstream api.statistics.sk unavailable — service error
- Rate limit or payment failure — 402 Payment Required

## How this service works

Official Slovak business registry (RPO) search via api.statistics.sk (Statistical Office of the SR). Query: ?q=31333532 (8-digit ICO) or ?q=eset (name; historic names also match, current-name hits rank first). Optional active_only=true, limit 1-5. Returns per entity: ICO, current name, legal form, address, source register, establishment/termination dates. Personal data of individual entrepreneurs is stripped (GDPR). 24h cache.

## Output

Returns a list of matching Slovak legal entities (up to 5), each with ICO, current name, legal form, registered address, source register, establishment date, and termination date (if applicable). Personal data of individual entrepreneurs is stripped for GDPR compliance. Results are 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 (3+ chars) or ICO, the 8-digit Slovak organisation id"
      },
      "limit": {
       "type": "integer",
       "default": 5,
       "description": "Max results (1-5)"
      },
      "active_only": {
       "type": "boolean",
       "default": false,
       "description": "Only entities not yet terminated"
      }
     }
    }
   },
   "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/slovak-business-registry-rpo-search-69823d15/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)
