# Strale Invoice Verification – Austrian Company & Financial Validation

> Strale Invoice Verification – Austrian Company & Financial Validation 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).

Validates an invoice by cross-checking the sender's Austrian company registration, VAT number, IBAN, BIC/SWIFT, domain, and email against compliance and financial databases, returning structured JSON with an audit trail.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/invoice-verify-at
- 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-verification-austrian-company-financial-validation-765bf002
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KYeS7jfM2ideIwY6QAs2j

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-verification-austrian-company-financial-validation-765bf002 -d '<json body>'
```

Example prompt: I just received an invoice from 'Mustermann GmbH' — can you verify it's a real Austrian company and that the payment details check out? The VAT number is ATU12345678, IBAN is AT61 1904 3002 3457 3201, BIC is RLNWATWW, and the sender email is billing@mustermann.at.

## When to prefer this

Use this endpoint when you need to validate an invoice received from an Austrian company and want a single call that cross-checks company registration, VAT, IBAN, BIC, and sender identity together with an audit trail. Prefer this over generic company lookup APIs when you specifically need invoice-level fraud detection and financial field validation in one structured response.

## Known failure modes

- Company name not found in Austrian register — returns validation failure with not-found status
- Invalid IBAN format — returns format error for the IBAN field
- VAT number not recognized — returns VAT lookup failure
- Missing required company_name field — returns 400 bad request
- Sender domain or URL unreachable for redirect tracing — returns partial result with domain check skipped
- Rate limiting or payment failure — returns 402 or 429 error

## How this service works

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

## Output

Structured JSON containing validation results for each submitted field (company existence, VAT validity, IBAN/BIC match, domain/email consistency), an overall trust/compliance verdict, 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": "Austrian company name or register number"
  },
  "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-verification-austrian-company-financial-validation-765bf002/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)
