# IBAN Bank Account Verification & KYC Risk Scoring

> IBAN Bank Account Verification & KYC Risk Scoring is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Validates an IBAN via ISO 13616 checksum and country-specific structure, resolves BIC/bank/branch info, returns SEPA flag, and produces a 0–100 fraud/KYC risk score with reasons.

## Facts

- Endpoint: GET https://api.agentstools.dev/bank/verify
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/iban-bank-account-verification-kyc-risk-scoring-c99cbc19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uMtCdLcDPJ-vLOaLHaaZw

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 iban-bank-account-verification-kyc-risk-scoring-c99cbc19
```

Example prompt: Can you verify whether IBAN DE89370400440532013000 is valid, check that it's a German account as expected, and give me the bank name, BIC, SEPA status, and fraud risk score?

## When to prefer this

Use this endpoint when you need a single, lightweight, offline-capable call to structurally validate an IBAN, resolve the associated bank/BIC, check SEPA eligibility, and get a deterministic fraud/KYC risk score — especially in payment onboarding, supplier verification, or compliance workflows where you need a fast signal without storing PII. Prefer this over full KYC providers when account existence or name-matching is not required.

## Known failure modes

- Invalid or malformed IBAN format returns a validation error
- Unknown or unsupported country prefix may limit bank resolution
- Country mismatch (when expected_country is provided) raises the risk score but is not an error
- Missing required 'iban' query parameter returns a 400-class error
- Ambiguous or legacy IBAN formats may reduce resolution confidence

## How this service works

Bank account / IBAN verification in one call: ISO 13616 checksum + per-country structure validation, BIC / bank name / branch resolution, country details, SEPA-zone flag, and a deterministic 0-100 fraud/KYC risk score with a band, reasons and weighted signals. Offline open-registry data (schwifty, MIT). Structural + resolution + risk indicators only; NOT proof the account exists or who owns it, and no name matching. Input not stored.

## Output

Returns ISO 13616 checksum result, per-country structure validity, resolved BIC, bank name, branch info, country details, SEPA-zone flag, and a deterministic 0–100 risk score with a risk band, list of reasons, and weighted signals. Does not confirm account existence, ownership, or perform name matching. Input is not stored.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "iban"
     ],
     "properties": {
      "iban": {
       "type": "string",
       "description": "IBAN to verify (spaces optional, any case), e.g. DE89370400440532013000."
      },
      "country": {
       "type": "string",
       "description": "Alias of expected_country (ISO-3166 alpha-2)."
      },
      "expected_country": {
       "type": "string",
       "description": "Optional ISO-3166 alpha-2 country the account is expected in (e.g. DE); a mismatch raises the risk score."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/iban-bank-account-verification-kyc-risk-scoring-c99cbc19/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
