# Sirenic Slovak Company Registry Lookup

> Sirenic Slovak Company Registry Lookup is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up a Slovak company's official registration data from the RPO (Register právnických osôb) by 8-digit IČO number

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/SK/:id
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-slovak-company-registry-lookup-c2fa0474
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UdhZFtb8N-Y6JMfkQSexr

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 sirenic-slovak-company-registry-lookup-c2fa0474
```

Example prompt: Can you look up the official Slovak company registration details for IČO 35763469 — I need the legal name, status, incorporation date, and registered office address from the RPO?

## When to prefer this

Use this endpoint when you need authoritative, live Slovak company data directly from the official government RPO register. Prefer this over web scraping or third-party databases when legal accuracy, freshness, and official sourcing are required — for example, KYB checks, invoice validation, supplier verification, or compliance workflows targeting Slovak entities. The CC-BY 4.0 license makes the data safe to store and redistribute.

## Known failure modes

- Invalid or non-existent IČO returns a not-found error
- IČO not exactly 8 digits returns a validation error
- Company exists in register but has no address on record — field may be null
- Network or upstream RPO availability issues causing timeouts
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Official Slovak company registry lookup (RPO — Register právnických osôb, the register of legal entities of Slovakia, Statistical Office SR, CC-BY). Query: /v1/eu/entreprise/SK/35763469 (8-digit IČO / ICO identifier). Returns legal name, legal form, normalized status, incorporation date and registered office — Slovak company data live from the official RPO register of Slovakia. Unified JSON schema shared by all Sirenic European company profiles.

## Output

A unified JSON object containing the company's official legal name, legal form (e.g. s.r.o., a.s.), normalized active/inactive status, incorporation date, and registered office address — sourced live from the Slovak RPO (Register právnických osôb) under CC-BY 4.0 license.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Slovak IČO, exactly 8 digits (RPO — Register právnických osôb, Štatistický úrad SR, CC-BY 4.0)., e.g. 35763469"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/sirenic-slovak-company-registry-lookup-c2fa0474/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
