# Slovak Business Registry (RPO) Lookup

> Slovak Business Registry (RPO) Lookup is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Search the official Slovak business registry (RPO) by company name or ICO number, returning legal entity details via the Statistical Office of the Slovak Republic.

## Facts

- Endpoint: GET https://data.greeneris.io/v1/sk/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/slovak-business-registry-rpo-lookup-390a5eed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SSOGIc3sVD3rWXjTuU_ZV

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-lookup-390a5eed
```

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

## When to prefer this

Use this endpoint when you need authoritative, official company data for Slovak legal entities specifically, sourced directly from the Statistical Office of the Slovak Republic's RPO register. Prefer this over general web searches or third-party business databases when you need legally accurate ICO, legal form, address, or establishment/termination data for Slovak entities. It also handles historic company name lookups, making it useful for tracing rebrands or restructurings.

## Known failure modes

- No results found if the ICO or name does not exist in RPO
- ICO must be exactly 8 digits; malformed queries may return empty results
- Name query requires at least 3 characters
- limit parameter must be between 1 and 5; out-of-range values may error
- Personal data of sole traders is stripped; results for individuals will be incomplete
- Stale data possible within the 24-hour cache window
- Service unavailability or timeout from upstream api.statistics.sk

## 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 the requested limit), each containing: ICO (8-digit identifier), current company name, legal form, registered address, source register, establishment date, and termination date if applicable. Personal data of individual entrepreneurs is omitted per GDPR. Results are cached for 24 hours. Current-name matches are ranked above historic-name matches.

## 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-lookup-390a5eed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
