# Strale Invoice Verify FR

> Strale Invoice Verify FR 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).

Verifies the authenticity and validity of French invoices by cross-checking SIREN/SIRET, VAT number, IBAN, BIC, sender domain, and email against French business registries and fraud signals.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/invoice-verify-fr
- 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-invoice-verify-fr-f8a6f209
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jIPxa7t538XFnF7VeoQi-

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-invoice-verify-fr-f8a6f209 -d '<json body>'
```

Example prompt: Can you verify this French invoice for me? The sender is factures@boulanger-sarl.fr from boulanger-sarl.fr, their SIREN is 552 032 534, VAT number FR83552032534, IBAN FR7630006000011234567890189, and BIC BNPAFRPP — I want to make sure it's legitimate before we pay.

## When to prefer this

Use this endpoint when you need to verify French invoices specifically, particularly when you have multiple data points (SIREN, VAT, IBAN, BIC, sender email/domain) and want cross-registry validation with a cryptographic audit trail. Prefer this over generic invoice validation endpoints when the invoicing entity is French and you need SIREN/SIRET registry checks. It is especially valuable in accounts-payable automation, supplier onboarding, and anti-fraud workflows where an immutable audit record per verification call is required.

## Known failure modes

- Invalid or malformed SIREN/SIRET returns a format validation error
- IBAN checksum failure returns invalid IBAN error
- Unknown or unresolvable sender domain returns a lookup failure
- French business registry unavailable returns a temporary service error
- Missing required fields returns a 400 bad request with field-level detail
- VAT number not found in EU VIES returns unverifiable VAT status

## 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 verification result indicating whether each provided field (SIREN/SIRET, VAT number, IBAN, BIC, sender email, sender domain, URL) passes or fails validation against French business registries and fraud signal databases. Includes an overall authenticity verdict, per-field status flags, detected anomalies or fraud signals, and a cryptographically hashed audit record for compliance traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "bic": {
   "type": "string",
   "description": "BIC/SWIFT code from the invoice"
  },
  "iban": {
   "type": "string",
   "description": "IBAN from the invoice payment details"
  },
  "siren": {
   "type": "string",
   "description": "French SIREN/SIRET number"
  },
  "sender_url": {
   "type": "string",
   "description": "URL from the invoice for redirect tracing"
  },
  "vat_number": {
   "type": "string",
   "description": "VAT number from the invoice"
  },
  "invoice_data": {
   "type": "object",
   "description": "Structured invoice data for validation"
  },
  "sender_email": {
   "type": "string",
   "description": "Email address of the invoice sender"
  },
  "sender_domain": {
   "type": "string",
   "description": "Domain of the invoice sender"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-invoice-verify-fr-f8a6f209/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)
