# Strale Invoice Verify AU

> Strale Invoice Verify AU 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 Australian invoices by validating ABN, IBAN, BIC/SWIFT, sender domain/email, VAT number, and structured invoice data to detect fraud or errors

## Facts

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

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-au-b1c85a6b -d '<json body>'
```

Example prompt: I just received an invoice from supplier TechParts Pty Ltd — their ABN is 51824753556, the sender email is accounts@techparts.com.au, sender domain is techparts.com.au, and the IBAN on the invoice is GB29NWBK60161331926819 with BIC NWBKGB2L. Can you verify this invoice looks legitimate and flag any red flags?

## When to prefer this

Choose this endpoint when you need to verify Australian invoices specifically, especially when you have an ABN to check alongside bank details (IBAN/BIC) and sender identity signals (email, domain). Prefer this over generic invoice validators when operating in the Australian market or when you need a cryptographic audit trail for compliance purposes. It is purpose-built for AU invoice fraud detection combining business registry, banking, and domain trust signals in a single call.

## Known failure modes

- Invalid or malformed ABN returns validation error
- Unresolvable sender domain or URL causes lookup failure
- Mismatched IBAN/BIC combination flagged as suspicious
- Missing required invoice_data fields may cause partial validation
- Unrecognized VAT number format returns format error
- Service unavailable returns 402 or 5xx error

## 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 including pass/fail status for each validated field (ABN validity, IBAN/BIC format and consistency, sender domain/email alignment, VAT number correctness, invoice data integrity), fraud risk signals, and a cryptographic audit record with chain hash for tamper-evident logging.

## 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": [
      "abn"
     ],
     "properties": {
      "abn": {
       "type": "string",
       "description": "Australian Business Number (11 digits)"
      },
      "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"
      },
      "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-au-b1c85a6b/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)
