# Strale KYB Essentials Switzerland

> Strale KYB Essentials Switzerland 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).

Looks up essential Know Your Business (KYB) data for Swiss companies by name or UID from official Swiss registries.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-essentials-ch
- 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-kyb-essentials-switzerland-99f3e510
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bRr1VpfVNjqw43LMeUoqz

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-kyb-essentials-switzerland-99f3e510 -d '<json body>'
```

Example prompt: Can you pull the official Swiss registry data for Nestlé S.A. — I need to verify they're an active registered company in Switzerland and get their UID and registered address?

## When to prefer this

Use this endpoint when you need authoritative, registry-sourced KYB data specifically for Swiss companies (Switzerland / CH jurisdiction). Prefer this over generic business search tools when you need legally reliable data for compliance, onboarding, or due diligence workflows. Best for agents that need structured, auditable company records with cryptographic proof of data provenance. If the company is Austrian, use the Austrian Firmenbuch endpoint instead.

## Known failure modes

- Company not found — name too ambiguous or not registered in Switzerland, returns empty or error
- Invalid UID format — if UID is malformed, returns validation error
- Multiple matches — common company names may match several entities, requiring disambiguation
- Company dissolved — returns data but flags inactive status
- Rate limiting or payment failure — x402 micropayment not processed correctly

## 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 official Swiss company data including company name, UID, legal form, registration status (active/dissolved), registered office address, canton, founding date, purpose/business description, and names of directors or authorized signatories — all sourced from the official Swiss Zefix/Handelsregister registry, with a cryptographic audit record included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "company_name"
     ],
     "properties": {
      "vat_number": {
       "type": "string",
       "description": "EU VAT number with country prefix (e.g. ATU14189108). Optional — used for VIES validation when the registry lookup does not return one (e.g. AT, SK); auto-derived from registry data where possible."
      },
      "company_name": {
       "type": "string",
       "description": "Swiss company name or UID"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-kyb-essentials-switzerland-99f3e510/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)
