# Strale Swedish Company Data

> Strale Swedish Company Data is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-13).

Looks up structured data for a Swedish company by its organisationsnummer, returning verified company information with a cryptographic audit record.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/swedish-company-data
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-swedish-company-data-678539bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nrftbzzpmvwCUjiywAsLC

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 strale-swedish-company-data-678539bf
```

Example prompt: Can you pull up the official company data for Swedish company 556703-7485 — I need to verify it's a legitimate registered business before we proceed with the contract.

## When to prefer this

Choose this endpoint when you need authoritative, audit-trailed Swedish company data verified against the official Swedish registry. Ideal for KYB (Know Your Business) workflows, supplier due diligence, contract verification, or compliance checks where a tamper-evident audit record is required. Prefer this over generic web searches when you need structured, machine-readable company data with cryptographic proof of provenance.

## Known failure modes

- Invalid or malformed organisationsnummer returns a validation error
- Company not found in Swedish registry returns empty or 404-equivalent response
- Network or upstream registry unavailability causes timeout or 503
- Payment failure via x402 prevents the call from executing
- Rate limiting if too many requests in a short window

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns structured JSON with verified Swedish company information (name, registration status, address, ownership details, and other registry fields) accompanied by a cryptographic audit record with chain hashing for tamper-evident provenance tracking.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "required": [
      "org_number"
     ],
     "properties": {
      "org_number": {
       "type": "string",
       "description": "Swedish organisationsnummer (10 digits, e.g. 556703-7485)"
      }
     }
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-swedish-company-data-678539bf/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)
