# Sirenic Swedish Annual Accounts (iXBRL)

> Sirenic Swedish Annual Accounts (iXBRL) 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-15).

Returns decoded annual financial statements for a Swedish company parsed from Bolagsverket's iXBRL filings, covering revenue, profit, balance sheet, and employees for every digitally filed fiscal year.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/SE/:orgnr/comptes
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-swedish-annual-accounts-ixbrl-9ae84c7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QSPH5JJUl3F3P4RaBM7Fx

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-swedish-annual-accounts-ixbrl-9ae84c7b
```

Example prompt: Can you pull the annual accounts for the Swedish company with organisationsnummer 5560401977 — I need revenue, net result, total assets, and equity for every year they've filed digitally with Bolagsverket?

## When to prefer this

Choose this endpoint when you need structured, machine-readable financial statement data (P&L, balance sheet, headcount) for a Swedish company parsed directly from official Bolagsverket iXBRL filings. Prefer it over generic web scraping or third-party data aggregators when you need authoritative EU high-value dataset provenance and multi-year fiscal history in a single call. Note that coverage is ~63% of Swedish companies (digital filers only).

## Known failure modes

- Company has never filed digitally with Bolagsverket — returns empty dataset, not an error
- Invalid or non-existent organisationsnummer — returns 404 or empty result
- Company exists but only files paper accounts — no iXBRL data available
- Malformed orgnr format — request rejected with validation error
- Bolagsverket source temporarily unavailable — upstream timeout or 503

## How this service works

Swedish company annual accounts and financial statements decoded from the iXBRL filings Bolagsverket publishes for free (EU high-value datasets since 3 Feb 2025). Query: /v1/eu/entreprise/SE/5560401977/comptes (10-digit organisationsnummer). EVERY digitally filed fiscal year: revenue, operating and net result, balance sheet (total assets, equity, debts), average employees and prior-year column as filed. Digital filing is optional in Sweden (~63% of reports): absence never means no accounts.

## Output

A structured dataset of every digitally filed fiscal year for the queried Swedish company, including revenue, operating result, net result, total assets, equity, total debts, average number of employees, and the prior-year comparative column as originally filed in iXBRL with Bolagsverket. Coverage is limited to years where digital filing was made (~63% of Swedish companies file digitally); absence of data does not imply the company has no accounts.

## 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": [
      "orgnr"
     ],
     "properties": {
      "orgnr": {
       "type": "string",
       "description": "10-digit Swedish organisationsnummer, with or without hyphen (5560401977 or 556040-1977)"
      }
     }
    },
    "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-swedish-annual-accounts-ixbrl-9ae84c7b/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)
