# Sirenic Slovak Annual Accounts Filings

> Sirenic Slovak Annual Accounts Filings 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-13).

Returns a list of structured annual account filings for a Slovak company from the official Register účtovných závierok (RÚZ), identified by its 8-digit IČO number.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/SK/:ico/comptes
- Price: $0.01/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-annual-accounts-filings-5e825630
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SzN_78hiaHRtBUUdcOyLc

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-annual-accounts-filings-5e825630
```

Example prompt: Can you pull up all the annual accounts filings for Slovak company with IČO 36417475 from the official RÚZ register and show me which fiscal years have structured financial statements available?

## When to prefer this

Choose this endpoint when you need structured metadata about annual account filings for a Slovak company specifically identified by its 8-digit IČO, sourced from the official Slovak Ministry of Finance register (RÚZ) under CC0 license. It is ideal for compliance checks, KYB due diligence, financial history verification, and audit trail retrieval for Slovak entities. Note that IFRS group filings available only as PDFs will not be included in the decoded output.

## Known failure modes

- Invalid or non-existent IČO returns empty results or 404
- IČO fewer or more than 8 digits returns a validation error
- Company exists but only has IFRS PDF filings — these are not decoded and results appear empty
- RÚZ upstream unavailable — returns 5xx error
- No filings on record for the given IČO — returns empty list

## How this service works

Slovak company annual accounts — filings list from the official Register účtovných závierok (RÚZ, registeruz.sk, Ministry of Finance, CC0). Query: /v1/eu/entreprise/SK/36417475/comptes (8-digit IČO). The fiscal years whose STRUCTURED financial statements have been decoded: closing date, period, filing type, form model, statutory vs consolidated scope, official document link. PDF-only filings (all IFRS groups) are not decoded — absence does not mean no accounts exist.

## Output

A list of decoded annual account filing records for the queried Slovak company, each including the fiscal year closing date, accounting period, filing type, form model, statutory vs consolidated scope indicator, and a link to the official document. Note: PDF-only IFRS filings are not decoded and will not appear in results.

## 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"
     ],
     "properties": {
      "ico": {
       "type": "string",
       "description": "8-digit Slovak IČO, e.g. 36417475"
      }
     }
    },
    "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-slovak-annual-accounts-filings-5e825630/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)
