One annual-account filing — Belgian or Finnish company financial statements
One annual-account filing — Belgian or Finnish company financial statements. BE: the deposit as filed at the NBB CBSO — structured JSON when the NBB publishes one, official PDF otherwise (?format=pdf forces the PDF; ?format=json refuses the fallback and answers 406, not charged). FI: one fiscal year decoded from the PRH XBRL filing — revenue, results, equity, assets, debts, prior-year figures (EUR, CC BY 4.0). Reference: BE deposit ref or FI closing date, from the filings list.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.sirenic.eu/v1/eu/entreprise/:pays/:id/comptes/:reference
| Category | Company and compliance |
|---|---|
| Provider host | api.sirenic.eu |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"id": "0103396-3",
"pays": "FI",
"reference": "2024-12-31"
},
"queryParams": {
"format": "pdf"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"id": {
"description": "BE: 10-digit enterprise number. FI: Business ID NNNNNNN-N, e.g. 0103396-3",
"type": "string"
},
"pays": {
"description": "BE or FI only on this pattern",
"type": "string"
},
"reference": {
"description": "BE: deposit reference YYYY-NNNNNNNN taken from the `reference` field of the filings list. FI: closing date YYYY-MM-DD taken from `date_cloture`, e.g. 2024-12-31",
"type": "string"
}
},
"required": [
"pays",
"id",
"reference"
],
"type": "object"
},
"queryParams": {
"properties": {
"format": {
"description": "BE only, optional. `pdf` forces the official PDF instead of the structured JSON; `json` refuses the PDF fallback and answers 406 (not charged) when the filing has no JSON representation",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}