Swedish annual report key figures (iXBRL), decoded
Swedish annual report key figures (iXBRL), decoded. Financials from a Swedish company's latest digitally filed annual report (årsredovisning, 2020+). We decode Bolagsverket's iXBRL (K2/K3) into net revenue, operating profit, profit after financial items, total assets, equity and average employees, with fiscal year and filing date. Example: /api/v1/se/company/5567647176/annual-report. Digital filing is voluntary — about 1 in 8 companies has one; a 404 is not charged.
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://x402-gateway.ai/api/v1/se/company/:orgnr/annual-report
| Category | Company and compliance |
|---|---|
| Provider host | x402-gateway.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 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": {
"orgnr": "5567647176"
},
"queryParams": {},
"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": {
"orgnr": {
"description": "Swedish organisationsnummer, 10 digits without hyphen",
"pattern": "^\\d{10}$",
"type": "string"
}
},
"required": [
"orgnr"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"description": "Key figures from the latest filed annual report",
"properties": {
"currency": {
"description": "ISO 4217, e.g. \"SEK\"",
"type": "string"
},
"document": {
"properties": {
"filed_at": {
"anyOf": [
{
"description": "Filing date (ISO 8601 date, YYYY-MM-DD)",
"type": "string"
},
{
"type": "null"
}
]
},
"format": {
"description": "Format of the filed document package",
"type": "string"
}
},
"required": [
"format",
"filed_at"
],
"type": "object"
},
"fiscal_year": {
"properties": {
"from": {
"description": "Period start (ISO 8601 date, YYYY-MM-DD)",
"type": "string"
},
"to": {
"description": "Period end (ISO 8601 date, YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
},
"identifier": {
"description": "Global identifier, e.g. \"SE:orgnr:5567647176\"",
"type": "string"
},
"key_figures": {
"description": "Whole currency units; null when the filing lacks the figure",
"properties": {
"employees_avg": {
"description": "Average number of employees",
"type": [
"number",
"null"
]
},
"equity": {
"type": [
"number",
"null"
]
},
"net_revenue": {
"type": [
"number",
"null"
]
},
"operating_profit": {
"type": [
"number",
"null"
]
},
"profit_after_financial_items": {
"type": [
"number",
"null"
]
},
"total_assets": {
"type": [
"number",
"null"
]
}
},
"required": [
"net_revenue",
"operating_profit",
"profit_after_financial_items",
"total_assets",
"equity",
"employees_avg"
],
"type": "object"
}
},
"required": [
"identifier",
"fiscal_year",
"currency",
"key_figures",
"document"
],
"type": "object"
},
"raw": {
"description": "Native upstream document metadata (Bolagsverket dokumentlista). Always present in responses; omitted from the published example."
},
"source": {
"description": "Where the data came from",
"properties": {
"attribution": {
"description": "Attribution text required by the data licence",
"type": "string"
},
"mock": {
"description": "true when the data is a labelled fixture rather than live register data",
"type": "boolean"
},
"name": {
"description": "Gateway source adapter that produced the data",
"type": "string"
},
"retrieved_at": {
"description": "When the upstream data was fetched (ISO 8601 timestamp)",
"type": "string"
}
},
"required": [
"name",
"attribution",
"retrieved_at",
"mock"
],
"type": "object"
}
},