# Strale Swiss Invoice Verification

> Strale Swiss 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-16).

Validates a Swiss invoice by cross-checking company identity, VAT number, IBAN, BIC, sender domain/email, and invoice data against Swiss registries and compliance sources

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/invoice-verify-ch
- 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-swiss-invoice-verification-203108c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vyGto2QxJSDs1XbmFliV6

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-swiss-invoice-verification-203108c0 -d '<json body>'
```

Example prompt: I just received an invoice from Mustermann AG (Swiss UID CHE-123.456.789) with VAT number CHE-123.456.789-MWST, IBAN CH56 0483 5012 3456 7800 9, BIC CRESCHZZ80A, sent from billing@mustermann.ch — can you verify this invoice is legitimate before I approve payment?

## When to prefer this

Use this endpoint when you need to validate invoices specifically from Swiss companies, where Swiss-specific registries (UID, MWST/VAT, Swiss IBAN format) are involved. Prefer this over generic invoice validation when you need Swiss compliance data, audit trails for accounts payable workflows, or multi-factor cross-checking of company identity alongside financial details.

## Known failure modes

- Missing required company_name field returns 400 validation error
- Unrecognized Swiss company name or UID returns no-match result
- Invalid IBAN format causes financial validation failure
- BIC/SWIFT code not recognized returns unknown-institution result
- Rate limiting or payment failure returns 402 or 429
- Swiss registry unavailable causes partial result with degraded confidence

## 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 containing the verification outcome for the Swiss invoice, including company identity validation against Swiss registries, VAT number status, IBAN/BIC correctness, sender domain and email trustworthiness assessment, and a full audit trail of checks performed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company_name"
 ],
 "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"
  },
  "company_name": {
   "type": "string",
   "description": "Swiss company name or UID"
  },
  "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-swiss-invoice-verification-203108c0/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)
