# Sirenic Slovak Fiscal Year Financial Statements

> Sirenic Slovak Fiscal Year Financial Statements is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns one Slovak fiscal year's balance sheet and profit & loss data from RÚZ filings, including key income, cost, asset, equity and liability figures with prior-year comparatives, in EUR.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/SK/:ico/comptes/:date_cloture
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-slovak-fiscal-year-financial-statements-63369f69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S9Xdm4tUN61TCEJ4q_ebh

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-fiscal-year-financial-statements-63369f69
```

Example prompt: Pull the statutory financial statements for Slovak company IČO 36417475 for the fiscal year ending 2023-12-31 — I need the balance sheet and profit & loss figures including net turnover, operating result, total assets, equity, and liabilities.

## When to prefer this

Use this endpoint when you need structured, machine-readable Slovak company financials sourced directly from the official RÚZ registry, with a specific fiscal year closing date. Prefer it over generic company data APIs when you require precise balance sheet and P&L line items in EUR with prior-year comparatives, or when you need to distinguish between statutory and consolidated accounts for Slovak entities.

## Known failure modes

- IČO not found or invalid — endpoint returns an error or empty result
- Closing date not matching any filed period — no data returned
- Filing not yet published for the requested period — null values or empty response
- Consolidated perimeter requested but only statutory filing exists — falls back or returns error
- Invalid date format — request rejected
- Rate limiting or payment failure — x402 payment required error

## How this service works

One Slovak fiscal year decoded from the structured statements filed with the RÚZ (CC0) — balance sheet and profit and loss: net turnover, operating income and costs, value added, staff costs, operating, financial, pre-tax and net result, income tax, total assets, non-current and current assets, equity, share capital, liabilities — plus prior-year comparatives (EUR, never converted). Null = not published, never zero. Closing date comes from the filings list; ?perimetre=consolide for consolidated.

## Output

A structured JSON object containing one Slovak fiscal year's financial data decoded from RÚZ filings: net turnover, operating income and costs, value added, staff costs, operating/financial/pre-tax/net results, income tax, total assets, non-current and current assets, equity, share capital, and liabilities — all in EUR, with prior-year comparatives. Null values indicate data not published (not zero). Closing date is sourced from the filings list.

## 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": [
      "ico",
      "date_cloture"
     ],
     "properties": {
      "ico": {
       "type": "string",
       "description": "8-digit Slovak IČO, e.g. 36417475"
      },
      "date_cloture": {
       "type": "string",
       "description": "Closing date YYYY-MM-DD from the filings list, e.g. 2025-12-31"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "perimetre": {
       "type": "string",
       "description": "`statutaire` (default) or `consolide` — never merged"
      },
      "type_depot": {
       "type": "string",
       "description": "Riadna | Mimoriadna | Priebežná | Kombinovaná — from the filings list; defaults to the ordinary filing"
      }
     }
    }
   },
   "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-fiscal-year-financial-statements-63369f69/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)
