# Strale Invoice Verify SE

> Strale Invoice Verify SE 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 Swedish invoices for fraud and legitimacy by cross-checking IBAN, BIC, VAT number, organization number, sender domain, and email against authoritative sources.

## Facts

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

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-se-cfcc8b7a -d '<json body>'
```

Example prompt: I just received an invoice from a Swedish company — can you verify it's legitimate? The sender domain is nordicsupplies.se, sender email is billing@nordicsupplies.se, org number is 556123-4567, VAT number is SE556123456701, IBAN is SE35 5000 0000 0549 1000 0003, and BIC is ESSESESS.

## When to prefer this

Choose this endpoint when you need to verify the authenticity of a Swedish invoice specifically — combining IBAN/BIC banking checks, Swedish organization number validation, VAT number verification, and sender identity (email/domain/URL) in a single call with a cryptographic audit trail. Prefer this over generic VAT validators or IBAN checkers when the invoice is Swedish (SE) and you need multi-signal fraud detection with auditability.

## Known failure modes

- Invalid IBAN format returns format validation error
- Unresolvable sender domain returns lookup failure
- Unknown Swedish org number returns not-found result
- Mismatched VAT number and org number returns inconsistency flag
- Network timeout on redirect URL tracing returns partial result
- Malformed invoice_data object returns schema validation 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 indicating whether the invoice's IBAN, BIC, VAT number, Swedish organization number, sender domain, email, and redirect URL are consistent and legitimate, along with fraud signals and 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": [
      "org_number"
     ],
     "properties": {
      "bic": {
       "type": "string",
       "description": "BIC/SWIFT code from the invoice"
      },
      "iban": {
       "type": "string",
       "description": "IBAN from the invoice payment details"
      },
      "org_number": {
       "type": "string",
       "description": "Swedish organization number"
      },
      "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-se-cfcc8b7a/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)
