# Strale KYB Essentials France

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

Returns essential Know Your Business (KYB) data for a French company identified by its SIREN or SIRET number, with a cryptographic audit trail.

## Facts

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

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

Example prompt: Run a KYB essentials check on the French company with SIREN number 552 032 534 and tell me its legal status, registered address, and activity code.

## When to prefer this

Choose this endpoint when you need authoritative KYB data on a French company and have its SIREN or SIRET number. It is purpose-built for France, returns a cryptographic audit trail suitable for compliance workflows, and costs a flat $1.62 USDC per call via x402 micropayment — ideal for agent-driven due diligence, vendor onboarding, or pre-payment checks on French entities where auditability is required.

## Known failure modes

- Invalid or malformed SIREN/SIRET returns a 400 validation error
- SIREN/SIRET not found in French registry returns a 404 not found response
- Inactive or deregistered company may return data with a ceased status
- x402 payment failure or insufficient USDC balance blocks the request
- Rate limiting or upstream registry unavailability returns a 503 or timeout

## 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

A structured JSON object containing official French company data (name, legal form, registration status, registered address, NAF/APE activity code, incorporation date, etc.) sourced from authoritative registries, plus a cryptographic audit record with chain hashing 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": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "French SIREN/SIRET number"
      },
      "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."
      }
     }
    },
    "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-france-c0a94eaf/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)
