# Sirenic Estonian Registry Rulings (Määrused) Lookup

> Sirenic Estonian Registry Rulings (Määrused) Lookup is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves official registry rulings (määrused) for an Estonian company from the e-Business Register open data, including entries, remedy orders, dissolution warnings, and annual-report fines with dates and alert counts.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/EE/:registrikood/evenements
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-estonian-registry-rulings-m-rused-lookup-894e807b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qjJk7D-x63z4fpmQM7QDG

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-estonian-registry-rulings-m-rused-lookup-894e807b
```

Example prompt: Can you pull up all the official registry rulings and warnings for Estonian company with registrikood 10119794 — I want to see if there are any dissolution warnings, remedy orders, or unpaid annual-report fines on record?

## When to prefer this

Use this endpoint when you specifically need official Estonian registry rulings and compliance warnings for a company identified by its 8-digit registrikood. Prefer this over generic company lookup endpoints when you need ruling-level detail (remedy orders, dissolution warnings, annual-report fines) rather than just basic company information. The daily-snapshot open data means results are current to the prior business day.

## Known failure modes

- 404 — entity has been fully struck off and removed from the open data; payment is cancelled and not charged
- Invalid or non-existent registrikood returns an error
- Malformed 8-digit code causes a validation error
- Temporary upstream unavailability of the RIK open data feed

## How this service works

Estonian registry rulings (määrused) — early-warning credit-risk signal from the e-Business Register open data (RIK, CC BY 4.0, daily national photo): entries, remedy orders, striking-off/dissolution WARNINGS, annual-report fines, dated. alerte flags a CLOSED type list (rest in types_non_qualifies); nombre_alertes excludes only rulings explicitly resolved (etat_code=L) — every other state (J, K, unseen codes) still counts. A still-registered entity with no ruling gets a dated positive answer.

## Output

Returns a structured list of Estonian registry rulings (määrused) for the specified company, including ruling type, date, and status codes. Includes an 'alerte' flag indicating whether the ruling type is a closed/qualified concern, and 'nombre_alertes' counting all unresolved rulings (excluding only those with etat_code=L). A registered entity with no rulings receives a dated positive confirmation. Struck-off entities that have left the open data entirely return a 404 (with payment cancelled).

## 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": [
      "registrikood"
     ],
     "properties": {
      "registrikood": {
       "type": "string",
       "description": "8-digit Estonian registry code (registrikood). Struck-off entities leave the open data entirely and return 404 (payment cancelled)., e.g. 10119794"
      }
     }
    },
    "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-estonian-registry-rulings-m-rused-lookup-894e807b/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)
