Official Slovak business registry (RPO) search via api
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.
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": {
"q": "31333532"
},
"type": "http"
},
"output": {
"example": {
"match_type": "ico",
"results": [
{
"address": {
"country": "Slovenská republika",
"municipality": "Bratislava",
"postal_code": "85101",
"street": "Einsteinova 24"
},
"established_on": "1992-09-17",
"ico": "31333532",
"legal_form": {
"code": "112",
"name": "Spoločnosť s ručením obmedzeným"
},
"name": "ESET, spol. s r.o.",
"natural_person": false,
"registration_number": "Sro/3586/B",
"source_register": "Obchodný register",
"terminated_on": null
}
],
"source": "api.statistics.sk RPO (Register of Legal Entities, Statistical Office of the Slovak Republic, CC BY 4.0); personal data of individuals removed",
"total_results": 1
},
"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": {
"active_only": {
"default": false,
"description": "Only entities not yet terminated",
"type": "boolean"
},
"limit": {
"default": 5,
"description": "Max results (1-5)",
"type": "integer"
},
"q": {
"description": "Company name (3+ chars) or ICO, the 8-digit Slovak organisation 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/sk/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/sk/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/sk/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/3975.json, and this resource appears in /discovery/resources and /discovery/search.