# Strale KYB Complete Germany

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

Performs comprehensive Know Your Business (KYB) verification for German companies, including registry lookup, VAT validation, and PEP screening of contact persons.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-complete-de
- Price: $2.7/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-complete-germany-eb9926a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dJRLGYUJvTv-wBNN5pTxx

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-complete-germany-eb9926a9 -d '<json body>'
```

Example prompt: Can you run a full KYB check on Siemens AG — their domain is siemens.com, VAT number DE811128135, and the contact is Hans Müller at hans.mueller@siemens.com?

## When to prefer this

Choose this endpoint when you need a comprehensive, audit-ready KYB report specifically for German companies, combining registry lookup, VAT validation, and PEP screening in a single call with a cryptographic audit trail. Prefer it over individual validation endpoints when onboarding German business partners, vendors, or clients for AML/compliance purposes and you need a defensible audit record.

## Known failure modes

- Company not found in German registry — unrecognized company name or registration number
- Invalid VAT number format — VAT does not match DE prefix or fails checksum
- Domain not associated with company — mismatch between domain and registry data
- PEP screening inconclusive — insufficient contact information provided
- Payment failure — insufficient USDC balance or x402 payment not completed
- Rate limiting or service unavailability — endpoint returns 429 or 503

## 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 KYB report for the German company including official registry data, VAT validation status, PEP screening result for the contact person, email validation, and a cryptographically hashed audit record for compliance documentation.

## 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": {
      "domain": {
       "type": "string",
       "description": "Company website domain (e.g., example.com)"
      },
      "vat_number": {
       "type": "string",
       "description": "EU VAT number with country prefix (e.g. DE811128135). Auto-derived from registry data when possible."
      },
      "company_name": {
       "type": "string",
       "description": "German company name or registration number"
      },
      "contact_name": {
       "type": "string",
       "description": "Name of contact person for PEP screening"
      },
      "contact_email": {
       "type": "string",
       "description": "Contact email for validation"
      }
     }
    },
    "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-complete-germany-eb9926a9/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)
