# Strale Belgian Invoice Verification

> Strale Belgian Invoice Verification 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).

Validates a Belgian invoice by cross-checking the enterprise number, VAT, IBAN, BIC, sender domain, and email against compliance and financial data sources, returning structured audit-trail results.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/invoice-verify-be
- 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-belgian-invoice-verification-207e5ebe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5bH6VI3ZwUfkuHgsCcc6q

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-belgian-invoice-verification-207e5ebe -d '<json body>'
```

Example prompt: Can you verify this Belgian invoice for me? The enterprise number is BE0123456789, VAT number is BE0123456789, the sender's email is billing@acmesupplies.be, their domain is acmesupplies.be, IBAN is BE68539007547034, and BIC is NICA BE BB — I want to make sure it's legitimate before I approve payment.

## When to prefer this

Use this endpoint when you need to validate invoices specifically from Belgian entities, especially when you have a Belgian enterprise number and want multi-factor verification covering company registry, VAT, banking details (IBAN/BIC), and sender identity in a single auditable call. Prefer this over generic company lookup APIs when fraud detection and compliance audit trails for Belgian invoices are required.

## Known failure modes

- Missing required enterprise_number field returns 400 validation error
- Unrecognized or malformed Belgian enterprise number returns error or low-confidence result
- Invalid IBAN format triggers financial validation failure
- BIC not matching known institutions returns mismatch flag
- Domain or email not resolvable returns inconclusive sender verification
- Rate limiting or quota exceeded returns 429 error
- Payment failure via x402 returns 402 before processing begins

## How this service works

Company data, compliance checks, financial validation. Structured JSON with audit trails. Every capability independently quality-scored.

## Output

A structured JSON object with audit trail containing validation outcomes for the enterprise number, VAT, IBAN, BIC, sender domain, and email — indicating whether each field is compliant, flagged, or unverifiable, along with an overall trust/compliance status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "enterprise_number"
 ],
 "properties": {
  "bic": {
   "type": "string",
   "description": "BIC/SWIFT code from the invoice"
  },
  "iban": {
   "type": "string",
   "description": "IBAN from the invoice payment details"
  },
  "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"
  },
  "enterprise_number": {
   "type": "string",
   "description": "Belgian enterprise number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-belgian-invoice-verification-207e5ebe/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)
