# Sirenic Estonian Company Registry Lookup

> Sirenic Estonian 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).

Fetches official company data for an Estonian entity from the e-Business Register (Äriregister) by 8-digit registrikood, returning legal name, form, status, incorporation date, and registered office.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/EE/: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-estonian-company-registry-lookup-743fb3a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WBYAcebK5Ab_WetNepbsl

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-company-registry-lookup-743fb3a5
```

Example prompt: Can you look up Estonian company 12417834 in the official Äriregister and tell me its legal name, current status, registered office, and when it was incorporated?

## When to prefer this

Choose this endpoint when you specifically need official Estonian company data identified by an 8-digit registrikood from the Äriregister. It is the authoritative source for Estonian legal entity verification, KYB workflows, supplier onboarding, and contract counterparty checks involving Estonian companies. Prefer it over generic web search when you need structured, normalized, legally authoritative data. Use the sibling EU VAT validation endpoint if you only have a VAT number rather than a registrikood.

## Known failure modes

- Invalid registrikood format (not exactly 8 digits) returns a validation error
- Unknown registrikood (not found in the register) returns a 404-equivalent response
- Payment not provided or insufficient USDC triggers an x402 payment-required error
- Estonian register temporarily unavailable causes a gateway or upstream error
- Rate limiting if too many requests are made in quick succession

## How this service works

Official Estonian company registry lookup (e-Business Register / Äriregister of Estonia). Query: /v1/eu/entreprise/EE/12417834 (8-digit registrikood). Returns legal name, legal form, normalized status, incorporation date and registered office — Estonian company data from Estonia's official e-Business Register. 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. OÜ, AS), normalized status (active/dissolved/etc.), incorporation date, and registered office address — all sourced directly from the Estonian e-Business Register and formatted in Sirenic's standard European company schema.

## 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": "Estonian registrikood, exactly 8 digits (e-Business Register / Äriregister, RIK)., e.g. 12417834"
      }
     }
    },
    "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-company-registry-lookup-743fb3a5/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)
