# French Company KYB Partial Check (LITE)

> French Company KYB Partial Check (LITE) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a lightweight KYB compliance verdict for a French company including VAT VIES validity, insolvency status, and a red-flag count.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/kyb/partial
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-company-kyb-partial-check-lite-c0093712
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rblBicylrvJTy-yizoaYR

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 french-company-kyb-partial-check-lite-c0093712
```

Example prompt: Can you do a quick compliance check on the French company 'Société Générale' with SIREN 552120222 — I need to know if they're VAT-valid on VIES, whether they're insolvent, and how many red flags come up?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.03) compliance snapshot for a French company and don't require the full dossier. Ideal for initial screening, batch supplier checks, or when only VAT validity, insolvency status, and a red-flag count are needed. Upgrade to /v1/fr/kyb when officers, financials, or detailed flag explanations are required.

## Known failure modes

- Company not found in French registry — returns empty or error response
- Invalid SIREN format — query rejected
- VIES service temporarily unavailable — VAT validity may be unresolvable
- Ambiguous company name returns no match or wrong entity
- Rate limit or payment failure — 402 response requiring USDC payment

## How this service works

LITE version of kyb: compliance verdict + VAT VIES validity + insolvency + red-flag count. Upgrade to /v1/fr/kyb for full dossier (officers, financials, flags detail). Query: ?q= or ?siren=

## Output

Returns a compliance verdict (pass/fail), VAT VIES validity (boolean), insolvency status, and a numeric red-flag count for the queried French company. For a full dossier with officers, financials, and detailed flags, the /v1/fr/kyb full endpoint should be used.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/french-company-kyb-partial-check-lite-c0093712/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
