# Strale Payment Validate — IBAN & VAT Financial Validation

> Strale Payment Validate — IBAN & VAT Financial Validation is a paid API for AI agents from api.strale.io, paid per call via x402, $0.27/call, status unknown (last checked 2026-09-14).

Validates an IBAN bank account number and VAT registration number together, returning a structured compliance result with audit trail.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/payment-validate
- Price: $0.27/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-payment-validate-iban-vat-financial-validation-3de8afd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IV9VMlrbIJ1W7Sh-HLUs-

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-payment-validate-iban-vat-financial-validation-3de8afd2 -d '<json body>'
```

Example prompt: Can you validate this IBAN — DE89370400440532013000 — and VAT number DE123456789 to make sure they're legitimate before we process this supplier payment?

## When to prefer this

Use this endpoint when you need to simultaneously validate both a company's bank account (IBAN) and VAT registration number in a single call with a structured audit trail — ideal for vendor onboarding, B2B payment compliance, or KYB workflows where both financial and tax credentials must be verified together.

## Known failure modes

- Invalid IBAN format returns validation error with details
- VAT number not found in registry returns unverified status
- Malformed input JSON returns 400 bad request
- Payment of 0.27 USDC not fulfilled returns 402 Payment Required
- Network timeout or upstream registry unavailable returns 503

## How this service works

Verify bank details and tax IDs before your agent processes a payment. IBAN validation, bank identification, and counterparty VAT check.

## Output

A structured JSON object containing validation results for both the IBAN (format correctness, bank reachability, country) and VAT number (registration status, business identity match), along with an audit trail for compliance documentation.

## Example request

```json
{
 "iban": "DE89370400440532013000",
 "vat_number": "DE123456789"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "iban": {
   "type": "string"
  },
  "vat_number": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-payment-validate-iban-vat-financial-validation-3de8afd2/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)
