# x402-gateway Swedish Annual Report (iXBRL)

> x402-gateway Swedish Annual Report (iXBRL) is a paid API for AI agents from x402-gateway.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves the latest digital annual report in iXBRL format with normalized key financial figures for a Swedish company, identified by its organisationsnummer.

## Facts

- Endpoint: GET https://x402-gateway.ai/api/v1/se/company/:orgnr/annual-report
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-gateway-swedish-annual-report-ixbrl-05bcc64c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_04Pjbr_Tfzrvc1pJF5uXq

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 x402-gateway-swedish-annual-report-ixbrl-05bcc64c
```

Example prompt: Can you pull the latest annual report and key financial figures for Swedish company with org number 5565465687?

## When to prefer this

Choose this endpoint when you need structured, normalized financial key figures from a Swedish company's latest annual report identified by its 10-digit organisationsnummer. It is particularly useful over raw filing retrieval when you need iXBRL-parsed, machine-readable financial data rather than unstructured PDFs. Prefer this over the Swedish company basics endpoint when you need detailed financials rather than just company identity information.

## Known failure modes

- Invalid or malformed orgnr (not exactly 10 digits) returns a validation error
- Company not found for the given orgnr returns a 404-style error
- No annual report filed or available in digital iXBRL format returns empty or null data
- Payment failure (x402 protocol) if USDC payment of $0.02 is not processed correctly
- Rate limiting or upstream data source unavailability causing temporary errors

## How this service works

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.

## Output

Returns an AnnualReportSummary object containing normalized key financial figures extracted from the company's latest iXBRL annual report, along with a SourceStamp indicating data provenance and filing metadata.

## 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",
       "pattern": "^\\d{10}$",
       "description": "Swedish organisationsnummer, 10 digits without hyphen"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "source"
     ],
     "properties": {
      "raw": {
       "description": "Native upstream document metadata (Bolagsverket dokumentlista). Always present in responses; omitted from the published example."
      },
      "data": {
       "type": "object",
       "required": [
        "identifier",
        "fiscal_year",
        "currency",
        "key_figures",
        "document"
       ],
       "properties": {
        "currency": {
         "type": "string",
         "description": "ISO 4217, e.g. \"SEK\""
        },
        "document": {
         "type": "object",
         "required": [
          "format",
          "filed_at"
         ],
         "properties": {
          "format": {
           "type": "string",
           "description": "Format of the filed document package"
          },
          "filed_at": {
           "anyOf": [
            {
             "type": "string",
             "description": "Filing date (ISO 8601 date, YYYY-MM-DD)"
            },
            {
             "type": "null"
            }
           ]
          }
         }
        },
        "identifier": {
         "type": "string",
         "description": "Global identifier, e.g. \"SE:orgnr:5567647176\""
        },
        "fiscal_year": {
         "type": "object",
         "required": [
          "from",
          "to"
         ],
         "properties": {
          "to": {
           "type": "string",
           "description": "Period end (ISO 8601 date, YYYY-MM-DD)"
          },
          "from": {
           
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-gateway-swedish-annual-report-ixbrl-05bcc64c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-gateway.ai](https://www.zero.xyz/host/x402-gateway.ai/llms.txt)
