# Strale Invoice Verify PT — Portuguese Invoice & Company Validation

> Strale Invoice Verify PT — Portuguese Invoice & Company Validation 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-14).

Validates Portuguese invoices by cross-checking company identity, VAT number, IBAN, BIC, sender domain/email, and URLs against compliance data with audit-trail output.

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/invoice-verify-pt
- Price: $2.7/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-invoice-verify-pt-portuguese-invoice-company-validation-1989ffd8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z895atnsOAIl1bvcHHvq2

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-pt-portuguese-invoice-company-validation-1989ffd8 -d '<json body>'
```

Example prompt: Can you verify this invoice I received from 'Tecnologias Inovadoras Lda' — their VAT number is PT512345678, IBAN is PT50000201231234567890154, BIC is BCOMPTPL, sender email is billing@tecnologias-inovadoras.pt, and I want to make sure everything checks out before I pay?

## When to prefer this

Use this endpoint when you need to validate invoices specifically from Portuguese companies, particularly when you have a combination of NIPC/company name, VAT, IBAN, BIC, and sender identity to cross-check. Prefer this over generic company lookup endpoints when invoice fraud detection or payment authorization for Portuguese suppliers is the goal.

## Known failure modes

- company_name not found in Portuguese registry — returns unverified or unknown status
- invalid IBAN format — returns format validation error
- VAT number mismatch with company — returns compliance warning
- sender domain not resolvable — returns domain check failure
- invoice_data object malformed — returns schema validation error
- BIC not recognized — returns financial validation warning

## How this service works

Company data, compliance checks, financial validation. Structured JSON with audit trails. Every capability independently quality-scored.

## Output

Returns a structured JSON object with validation results for each checked field (company identity, VAT, IBAN, BIC, sender email/domain/URL), an overall compliance status, and an audit trail of the checks performed.

## 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": "Portuguese company name or NIPC"
  },
  "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-pt-portuguese-invoice-company-validation-1989ffd8/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)
