# Swedish Company Registry Lookup (Bolagsverket)

> Swedish Company Registry Lookup (Bolagsverket) is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15, last successful call 2026-05-18).

Looks up Swedish company data from Bolagsverket's registry by organisationsnummer, returning name, legal form, status, address, SNI codes, registration date, and insolvency/liquidation info.

## Facts

- Endpoint: GET https://api.strale.io/x402/swedish-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-05-18
- Success rate: 50% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-de2a84c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cc3aNNwILmZNkgvhWpOvv

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

Example prompt: Can you look up the Swedish company with organisationsnummer 556703-7485 and tell me its legal form, current status, registered address, and whether it has any ongoing insolvency or liquidation procedures?

## When to prefer this

Use this endpoint when you need authoritative, official Swedish company registry data from Bolagsverket, particularly for KYC/due diligence, business verification, or enriching records with legal form, status, industry classification, and insolvency information for Swedish entities identified by organisationsnummer.

## Known failure modes

- Invalid or malformed organisationsnummer format returns a validation error
- Company not found in Bolagsverket registry returns a not-found response
- Network or upstream Bolagsverket API unavailability causes service errors
- Missing required org_number query parameter returns a bad request error

## How this service works

Look up Swedish company registry data via Bolagsverket's Värdefulla datamängder API. Returns name, legal form, status, registered address, SNI industry codes, registration date, and ongoing insolvency/liquidation procedures.

## Output

Returns structured Swedish company data including official company name, legal form (e.g. Aktiebolag), registration status (active/dissolved), registered address, SNI industry codes, registration date, and any active insolvency or liquidation procedures sourced from Bolagsverket's Värdefulla datamängder API.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "org_number": "556703-7485"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "org_number"
 ],
 "properties": {
  "org_number": {
   "type": "string",
   "description": "Swedish organisationsnummer (10 digits, e.g. 556703-7485)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": {
  "enum": [
   "active",
   "deregistered",
   "unknown"
  ],
  "type": "string"
 },
 "is_active": {
  "type": [
   "boolean",
   "null"
  ]
 },
 "sni_codes": {
  "type": "array"
 },
 "legal_form": {
  "type": [
   "string",
   "null"
  ]
 },
 "org_number": {
  "type": "string"
 },
 "vat_number": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "company_type": {
  "type": "string"
 },
 "country_code": {
  "type": "string"
 },
 "legal_form_code": {
  "type": [
   "string",
   "null"
  ]
 },
 "registered_date": {
  "type": [
   "string",
   "null"
  ]
 },
 "alternative_names": {
  "type": "array"
 },
 "company_type_code": {
  "type": "string"
 },
 "deregistered_date": {
  "type": [
   "string",
   "null"
  ]
 },
 "ongoing_procedures": {
  "type": "array"
 },
 "registered_address": {
  "type": [
   "object",
   "null"
  ]
 },
 "business_description": {
  "type": [
   "string",
   "null"
  ]
 },
 "deregistration_reason": {
  "type": [
   "string",
   "null"
  ]
 }
}
```

## More

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