# Strale KYB Complete US

> Strale KYB Complete US 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 a comprehensive Know Your Business (KYB) verification for US companies, including registry lookup, VAT validation, and PEP screening of key contacts.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-complete-us
- 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-us-f867f016
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S1q4wLxzqwnLbLGUM_4Xh

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-us-f867f016 -d '<json body>'
```

Example prompt: Can you run a full KYB check on Acme Corp — their domain is acmecorp.com, EIN is 82-1234567, and the main contact is Jane Smith at jane@acmecorp.com? I need registry data, VAT validation, and PEP screening.

## When to prefer this

Choose this endpoint when you need a single, comprehensive KYB check for a US-registered company that combines registry lookup, VAT validation, and PEP screening in one call with a tamper-evident audit trail. Prefer it over building your own multi-source compliance pipeline, especially when you need cryptographic proof of the check for regulatory purposes or when operating across the US and EU where both EIN and VAT data are relevant.

## Known failure modes

- Company not found in US registry — returns not-found error with available registry sources checked
- Invalid EIN format — returns validation error before processing
- VAT number format invalid or mismatched country prefix — returns format error
- PEP screening service unavailable — partial result returned with screening field marked as error
- Domain does not resolve or has no business association — low-confidence enrichment returned
- Payment failure via x402 — call not executed, payment error returned

## 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 comprehensive KYB report including company registry data, VAT number validation status, PEP screening results for the named contact, overall verification outcome, and a signed audit record with cryptographic chain hash for compliance documentation.

## 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": [
      "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": "US company name or EIN"
      },
      "contact_name": {
       "type": "string",
       "description": "Name of contact person for PEP screening"
      },
      "contact_email": {
       "type": "string",
       "description": "Contact email for validation"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-kyb-complete-us-f867f016/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)
