# Strale Invoice Verify DE

> Strale Invoice Verify DE 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 legitimacy of a German invoice by cross-checking company registration, VAT number, IBAN/BIC, sender domain, and email against trusted sources to detect fraud or errors.

## Facts

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

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-de-29de700d -d '<json body>'
```

Example prompt: Can you verify this German invoice for me — the sender is Müller GmbH, VAT number DE123456789, IBAN DE89370400440532013000, BIC COBADEFFXXX, sent from billing@mueller-gmbh.de via mueller-gmbh.de? I want to make sure it's legitimate before we pay it.

## When to prefer this

Choose this endpoint when you need to verify invoices specifically from German entities, where cross-referencing VAT numbers, IBAN/BIC, company registration, and sender identity in a single call is required. It is preferable over generic VAT validators or IBAN checkers when you need holistic invoice fraud detection with a cryptographic audit trail. Especially valuable for accounts payable automation, vendor onboarding workflows, or high-value B2B payment approval pipelines targeting the German market.

## Known failure modes

- Invalid or unrecognized VAT number format returns validation error
- IBAN checksum failure indicates potentially forged payment details
- Company name not found in German commercial register returns no-match result
- Sender domain not resolvable or newly registered triggers risk flag
- Malformed input fields (e.g. missing BIC) return 400 bad request
- External registry lookup timeout returns partial result or service unavailable

## 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 report indicating whether the German invoice passes authenticity checks across company registration, VAT number validity, IBAN/BIC correctness, sender domain and email alignment, and any detected fraud signals. Each call also returns a cryptographic audit record with chain hashing for compliance and 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": [
      "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": "German company name or registration 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"
      }
     }
    },
    "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-de-29de700d/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)
