# Sirenic Estonian Company Annual Accounts

> Sirenic Estonian Company Annual Accounts 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 all published annual financial figures for an Estonian company from the official e-Business Register (RIK), covering every year since 2019 in a single call.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/EE/:registrikood/comptes
- 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-company-annual-accounts-d2f58b9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6pkuTDdL80C5kiOtwghzu

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-annual-accounts-d2f58b9d
```

Example prompt: Pull all published annual accounts for the Estonian company with registry code 10003666 — I need the full history since 2019: revenue, net profit, balance sheet totals, and average headcount.

## When to prefer this

Use this endpoint when you need historical financial data specifically for an Estonian-registered company sourced directly from the official RIK open data registry. It covers every published year since 2019 in one call, which is more efficient than scraping or using general European business databases. Prefer this over generic company data APIs when you need both statutory and consolidated figures clearly separated, or when you need the full time-series of financials rather than just the most recent year.

## Known failure modes

- Invalid or non-existent registrikood returns an error or empty result
- Company has not filed accounts since 2019 — returns empty dataset
- Data freshness lag: figures reflect last monthly refresh from RIK, not real-time
- Only 8-digit Estonian codes supported — non-Estonian registry codes will fail
- Payment failure via x402 protocol prevents call from completing

## How this service works

Estonian company annual accounts — key figures from the official e-Business Register open data (RIK, CC BY 4.0, refreshed monthly). Query: /v1/eu/entreprise/EE/10003666/comptes (8-digit registrikood). EVERY published financial year since 2019 in one call: balance sheet (assets, equity, liabilities), revenue, employee expense, depreciation, operating and net profit, average FTE headcount — in EUR as published. Statutory and consolidated figures kept apart. Null = not published, never zero.

## Output

A structured JSON response containing every published financial year's data since 2019 for the queried Estonian company: balance sheet items (total assets, equity, total liabilities), income statement figures (revenue, employee expense, depreciation, operating profit, net profit), and average FTE headcount — all in EUR as officially reported. Statutory and consolidated figures are returned separately. Null values indicate a figure was not published (never zero).

## 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, e.g. 10003666"
      }
     }
    },
    "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-annual-accounts-d2f58b9d/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)
