# Strale KYC Sweden

> Strale KYC Sweden is a paid API for AI agents from api.strale.io, paid per call via x402, $1.62/call, status unknown (last checked 2026-09-15).

Performs KYC (Know Your Customer) compliance verification for Swedish organizations using their organization number, returning structured compliance data with a cryptographic audit trail.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyc-sweden
- Price: $1.62/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-kyc-sweden-b71037e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZLqwfduZqSXtkHylsbU7A

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-kyc-sweden-b71037e9 -d '<json body>'
```

Example prompt: Can you run a KYC check on the Swedish company with organization number 556123-4567 — I need to verify their compliance status before we proceed with onboarding them.

## When to prefer this

Choose this endpoint when you need KYC verification specifically for Swedish organizations and require an auditable, cryptographically verifiable result. It is purpose-built for the Swedish market with country-specific compliance logic, making it more reliable than generic company lookup APIs for Swedish regulatory requirements.

## Known failure modes

- Invalid or malformed Swedish organization number returns validation error
- Organization number not found in Swedish registry returns not-found response
- Network or upstream data source timeout returns error response
- Insufficient USDC balance or payment failure prevents execution

## 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 a structured JSON object containing KYC compliance data for the Swedish organization, including registration status, company details, compliance indicators, and an audit record with a cryptographic chain hash for verifiability.

## 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": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "org_number"
     ],
     "properties": {
      "org_number": {
       "type": "string",
       "description": "Swedish organization number"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

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