# Strale Invoice Verify Belgium

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

Verifies Belgian invoices by cross-checking enterprise number, VAT number, IBAN/BIC, sender domain/email, and redirect URLs against authoritative sources to detect fraud or data errors.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/invoice-verify-be
- Price: $2.7/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-invoice-verify-belgium-0f938e68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HkjB6EyRQL0z1hWwmeKrc

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-belgium-0f938e68 -d '<json body>'
```

Example prompt: I just received an invoice from supplier TechBelgium BVBA — can you verify it? Their enterprise number is 0456.123.456, VAT BE0456123456, IBAN BE68 5390 0754 7034, BIC NICA BE BB, sender email is billing@techbelgium.be, domain techbelgium.be, and there's a payment redirect to https://pay.techbelgium.be.

## When to prefer this

Choose this endpoint when you need to verify Belgian invoices specifically, combining multiple data signals (enterprise registry, VAT, banking details, domain/email, and URL reputation) in a single audited call. Prefer it over generic VAT or IBAN validators when the invoice is Belgian and you need a holistic fraud-detection result with a cryptographic audit trail for compliance purposes.

## Known failure modes

- Invalid or malformed IBAN returns field-level validation error
- Unrecognized Belgian enterprise number returns not-found status
- VAT number format mismatch triggers format validation failure
- Unreachable or suspicious redirect URL flagged with connectivity/reputation warning
- Missing required fields returns 400-level error with field specification
- API payment failure via x402 protocol prevents call execution

## 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 the validity status of each submitted field (enterprise number, VAT, IBAN/BIC, sender domain, email, redirect URL), along with fraud risk signals, field-level mismatch details, and a cryptographically hashed audit record for traceability.

## 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": [
      "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"
      }
     }
    },
    "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-invoice-verify-belgium-0f938e68/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)
