# Strale KYB Complete France

> Strale KYB Complete France 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-13).

Performs a comprehensive Know Your Business (KYB) verification for French companies using SIREN/SIRET, including registry data, VAT validation, and PEP screening.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/kyb-complete-fr
- Price: $2.7/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-kyb-complete-france-a3f0e824
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yc0KAoAfed0ubmt2IZMNH

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-france-a3f0e824 -d '<json body>'
```

Example prompt: Run a full KYB check on the French company with SIREN 552 032 534, their domain is lvmh.com, VAT number FR60542065479, and the contact is Jean Dupont at jean.dupont@lvmh.com.

## When to prefer this

Choose this endpoint when you need a single, comprehensive KYB verification pass for a French company — combining registry lookup, VAT validation, and PEP screening in one call with an auditable cryptographic trail. Prefer it over individual data-point lookups when French regulatory compliance or financial onboarding workflows require verifiable proof of the check.

## Known failure modes

- Invalid or non-existent SIREN/SIRET returns a 404 or validation error
- Malformed VAT number format returns a validation failure
- Company found in registry but VAT lookup unavailable returns partial results
- PEP screening unavailable for contact if name is ambiguous or missing
- Rate limiting or payment failure (x402) if USDC balance is insufficient

## 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 comprehensive KYB data for the French company including official registry information (name, address, legal status, incorporation date), VAT number validation, PEP screening result for the named contact, and a cryptographically hashed audit record confirming the integrity of the verification chain.

## 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": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "French SIREN/SIRET number"
      },
      "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."
      },
      "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-france-a3f0e824/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)
