# Strale Invoice Verify ES — Spanish Invoice Fraud & Compliance Checker

> Strale Invoice Verify ES — Spanish Invoice Fraud & Compliance Checker 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 Spanish invoices by cross-checking company identity, VAT number, IBAN, BIC, sender domain, and email against compliance and fraud signals, returning structured JSON with audit trails.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/invoice-verify-es
- 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-es-spanish-invoice-fraud-compliance-checker-02488c02
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_11Unrb0mOzFLAWGxgVj7v

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-es-spanish-invoice-fraud-compliance-checker-02488c02 -d '<json body>'
```

Example prompt: Before I pay this invoice, can you run a Strale fraud check on it? The company is Distribuciones García S.L. with CIF B12345678, their IBAN is ES91 2100 0418 4502 0005 1332, BIC is CAIXESBBXXX, the sender email is billing@distribuciones-garcia.es, and their domain is distribuciones-garcia.es.

## When to prefer this

Use this endpoint when processing invoices from Spanish companies and you need to verify legitimacy before authorizing payment — especially when you have VAT/CIF, IBAN, BIC, and sender identity details to cross-check. Prefer this over generic company lookup endpoints when the context is specifically Spanish invoice fraud detection or AP compliance automation.

## Known failure modes

- Missing required company_name or CIF returns a 400 validation error
- Invalid IBAN format returns a field-level validation failure with reason
- Unknown Spanish company returns a not-found status with no registry match
- Suspicious redirect URL flagged but service still returns a result with risk score
- Network timeout or upstream registry unavailability returns a 503 error

## 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 validation verdicts for each submitted field (VAT/CIF validity, IBAN/BIC consistency, domain-email alignment, URL risk signals), overall compliance status, fraud risk indicators, and an audit trail suitable for accounts-payable records.

## 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": "Spanish company name or CIF"
  },
  "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-verify-es-spanish-invoice-fraud-compliance-checker-02488c02/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)
