# Sirenic Belgium & Finland Company Filings List

> Sirenic Belgium & Finland Company Filings List 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-14).

Returns the list of available annual account filing years for a Belgian (NBB) or Finnish (PRH XBRL) company by enterprise number or Business ID

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/:pays/:id/comptes
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-belgium-finland-company-filings-list-520740d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ut3iHPpT7q6L-bJisN4QF

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-belgium-finland-company-filings-list-520740d6
```

Example prompt: Can you pull the list of all annual account filings available for Belgian company number 0403170701 from the official NBB records?

## When to prefer this

Use this endpoint when you need to discover what annual account filings exist for a specific Belgian or Finnish company before retrieving the actual financial data. It is the only service on x402 exposing Belgian NBB and Finnish PRH filing inventories. Choose this over generic European company data endpoints when you specifically need BE or FI filing availability, especially when building due diligence workflows, credit analysis pipelines, or financial research tools that need to know the historical depth of a company's public accounts.

## Known failure modes

- Invalid country code (only BE or FI accepted on this route) — returns error or empty result
- Malformed Belgian enterprise number (must be exactly 10 digits, no dots) — validation error
- Malformed Finnish Business ID (must follow NNNNNNN-N format with hyphen) — validation error
- Company not found in the register — returns empty list
- Finnish company does not file digitally (only ~5% of Finnish limited companies do) — returns empty list
- Payment failure (x402 micropayment not completed) — 402 response
- Rate limiting or network timeout — 5xx error

## How this service works

European company financials — Belgian and Finnish company annual accounts, filings list. BE: every published deposit reference at the NBB CBSO (Central Balance Sheet Office, Authentic Data, since 1978), 10-digit enterprise number. FI: fiscal years available as PRH XBRL filings (~5% of Finnish limited companies file digitally; empty filings are filtered out, every listed year carries figures), Business ID NNNNNNN-N. Unique on x402: no other service exposes Belgian or Finnish filed accounts.

## Output

An array or list of available filing years (and/or deposit references) for the requested company, indicating which fiscal years have published annual accounts on record — either NBB deposit references for Belgium (potentially going back to 1978) or PRH XBRL fiscal year identifiers for Finland (digital filers only, empty filings excluded).

## 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": [
      "pays",
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "BE: 10-digit enterprise number, no dots. FI: Business ID NNNNNNN-N (hyphen included), e.g. 0400378485"
      },
      "pays": {
       "type": "string",
       "description": "BE or FI only on this pattern (NO/DK/LV/EE/SE/SK/GB have their own literal, differently priced routes)"
      }
     }
    },
    "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-belgium-finland-company-filings-list-520740d6/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)
