# Strale Invoice Verify US

> Strale Invoice Verify US 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 US invoice by cross-checking sender identity, VAT/EIN, IBAN/BIC, domain, and email against trusted data sources.

## Facts

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

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-us-fb17f086 -d '<json body>'
```

Example prompt: I just received an invoice from Acme Corp (EIN 12-3456789, sender email billing@acmecorp.com, domain acmecorp.com) with IBAN GB29NWBK60161331926819, BIC NWBKGB2L, and VAT number US123456789 — can you verify this invoice is legitimate before I approve payment?

## When to prefer this

Use this endpoint when you need to verify a US-context invoice before approving payment, especially when checking for business email compromise (BEC), invoice fraud, or vendor impersonation. It combines multiple identity signals (EIN, VAT, IBAN, BIC, email, domain) in a single call with a cryptographic audit trail — prefer it over single-signal validators when you need holistic invoice trust scoring and compliance documentation.

## Known failure modes

- Unrecognized EIN or company name returns low-confidence or unverified status
- Invalid IBAN checksum triggers format validation failure
- Unknown or newly registered sender domain may return insufficient data
- VAT number not matching US format returns format error
- Missing required fields (e.g. no company_name or invoice_data) may return partial results or error
- Redirect URL unreachable or flagged as suspicious returns warning signal

## 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 result indicating whether the invoice details are consistent and legitimate, including checks on company identity (EIN/VAT), banking details (IBAN/BIC validity), sender domain and email authenticity, and redirect URL safety. Each response includes a cryptographic audit record with chain hashing for 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": "US company name or EIN"
      },
      "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-us-fb17f086/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)
