# EU Business KYB Verification (VIES + GLEIF + IBAN)

> EU Business KYB Verification (VIES + GLEIF + IBAN) is a paid API for AI agents from x402-seller-202595743428.europe-west1.run.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs a single-call Know Your Business (KYB) check on EU entities by fusing EU VAT (VIES), GLEIF LEI, Wikidata entity resolution, and IBAN checksum into a unified scored verdict (pass/review/fail) with confidence and flags.

## Facts

- Endpoint: GET https://x402-seller-202595743428.europe-west1.run.app/verify-eu-business
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-business-kyb-verification-vies-gleif-iban-646e1b78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tfHKukFQPq_gx_GIMyd2b

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 eu-business-kyb-verification-vies-gleif-iban-646e1b78
```

Example prompt: Can you run a full KYB check on our new Lithuanian supplier — their VAT number is LT123456789, country code LT — and tell me if they pass, need review, or fail, along with any flags?

## When to prefer this

Choose this endpoint when you need a single, consolidated KYB verdict for an EU business combining multiple official data sources in one call — especially when you have partial identifiers (just a VAT, just an LEI, just an IBAN, or just a name) and want cross-validated confidence rather than checking each registry separately. Prefer this over individual VAT, LEI, or IBAN endpoints when you need a unified pass/review/fail decision for onboarding or compliance workflows.

## Known failure modes

- Invalid or malformed VAT number returns validation error
- LEI not found in GLEIF registry returns unknown status
- IBAN checksum failure flagged as invalid
- Country code not an EU member state causes VIES lookup to fail
- Insufficient identifiers provided (need at least one of: country+vat, lei, name, or iban)
- Upstream VIES or GLEIF service downtime causes degraded or unavailable verdict
- Company name too generic to resolve uniquely returns low-confidence result

## How this service works

Verify / due-diligence an EU business in ONE call (KYB). Give any of {country+vat, lei, name, iban}; fuses official EU VAT (VIES) validation, GLEIF LEI status, public entity resolution and IBAN checksum into one scored verdict (pass/review/fail) with confidence and flags. Use to onboard, validate a counterparty, or KYB-check a supplier/customer before transacting. Returns a single structured decision object.

## Output

A single structured decision object containing a scored verdict (pass, review, or fail), a confidence score, and an array of flags explaining any issues — aggregating results from VIES VAT validation, GLEIF LEI status, public entity resolution, and IBAN checksum where applicable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lei": {
   "type": "string",
   "description": "20-char LEI code (optional)"
  },
  "vat": {
   "type": "string",
   "description": "VAT number without country prefix"
  },
  "iban": {
   "type": "string",
   "description": "IBAN to checksum (optional)"
  },
  "name": {
   "type": "string",
   "description": "Legal/company name (optional)"
  },
  "country": {
   "type": "string",
   "description": "EU country code for the VAT check, e.g. LT"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-business-kyb-verification-vies-gleif-iban-646e1b78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-202595743428.europe-west1.run.app](https://www.zero.xyz/host/x402-seller-202595743428.europe-west1.run.app/llms.txt)
