# Swedish Company Credit Report Summary

> Swedish Company Credit Report Summary 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).

Retrieves a credit report summary for a Swedish company from Allabolag, including credit rating, financials, risk indicators, and board members.

## Facts

- Endpoint: GET https://api.strale.io/x402/credit-report-summary
- 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-f4025f3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5t1C9GHZCf4Vck03lcgz1

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-f4025f3c
```

Example prompt: Can you pull the credit report summary for Swedish company Volvo Cars, org number 5560312725? I want to see their credit rating, revenue, profit, and any risk indicators.

## When to prefer this

Use this endpoint when you need a quick credit and financial health check on a Swedish company, especially when you have the 10-digit Swedish org number or a company name. Prefer this over general web search when structured, machine-readable credit data (rating, revenue, profit, risk) is needed for due diligence, supplier vetting, or partner assessment.

## Known failure modes

- Invalid or unknown org number returns an error or empty result
- Company name is ambiguous and matches multiple companies
- Swedish company not found in Allabolag database
- Malformed org number (not 10 digits) triggers validation error
- Service unavailable or upstream Allabolag timeout

## How this service works

Get a credit report summary for a Swedish company from Allabolag. Returns credit rating, financial summary, risk indicators, board members. Accepts org number or company name. SQS: 76/100.

## Output

Returns a JSON object with the company name, credit rating (e.g. AAA, BB), revenue in SEK, profit in SEK, and a risk indicator string — all sourced from Allabolag's credit report data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "org_number"
 ],
 "properties": {
  "org_number": {
   "type": "string",
   "description": "Swedish org number (10 digits) or company name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "profit_sek": {
  "type": "number"
 },
 "revenue_sek": {
  "type": "number"
 },
 "company_name": {
  "type": "string"
 },
 "credit_rating": {
  "type": "string"
 },
 "risk_indicator": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-f4025f3c/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)
