# Swedish Annual Report Financial Data Extractor

> Swedish Annual Report Financial Data Extractor is a paid API for AI agents from api.strale.io, paid per call via x402, $0.01/call, status down (last checked 2026-09-14).

Downloads and extracts structured financial data (balance sheet, income statement, key ratios) from a Swedish company's annual report (årsredovisning) given its org number.

## Facts

- Endpoint: POST https://api.strale.io/x402/annual-report-extract
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-0b9f8f06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ne5MYWy_P52d1ABPfR1Of

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 api-strale-io-0b9f8f06 -d '<json body>'
```

Example prompt: Can you pull the latest annual report financials for Swedish company with org number 556703-7485 — I need their revenue, profit, equity, total assets, and headcount?

## When to prefer this

Use this endpoint when you need structured financial data (revenue, profit, equity, assets, employees) for a Swedish registered company and have their org number. Ideal for competitive research, due diligence, or financial analysis of Swedish entities without manually parsing PDF annual reports.

## Known failure modes

- Invalid or malformed org number returns an error
- No annual report found for the given org number or year
- Requested fiscal year not yet available or not filed
- PDF parsing failure if report format is non-standard
- Rate limiting or payment failure on the x402 protocol

## How this service works

Download and extract structured financial data from a Swedish company's annual report (årsredovisning). Returns balance sheet, income statement, and key ratios. SQS: 48/100.

## Output

Returns structured financial data including company name, fiscal year, revenue in SEK, profit in SEK, equity in SEK, total assets in SEK, and employee count extracted from the company's official Swedish annual report.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "org_number"
 ],
 "properties": {
  "year": {
   "type": "integer",
   "description": "Fiscal year (defaults to most recent)"
  },
  "org_number": {
   "type": "string",
   "description": "Swedish org number (e.g. 556703-7485)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "employees": {
  "type": "integer"
 },
 "equity_sek": {
  "type": "number"
 },
 "profit_sek": {
  "type": "number"
 },
 "fiscal_year": {
  "type": "string"
 },
 "revenue_sek": {
  "type": "number"
 },
 "company_name": {
  "type": "string"
 },
 "total_assets_sek": {
  "type": "number"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-0b9f8f06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
