Compliance

Full IBAN compliance check

Validates an IBAN and returns everything from /v1/iban/validate PLUS a full compliance layer: sanctions screening (OFAC, EU, UN), FATF status, SEPA Instant reachability, VoP participant check, and a composite risk score (0-100). Costs $0.02 USDC via x402.

post/v1/iban/compliance

Request body

ibanstring required

IBAN to check

Example request

{
  "iban": "DE89370400440532013000"
}

Response

Compliance check result (includes full IBAN validation + compliance layer)

ibanstring required

The IBAN as provided (normalized)

validboolean required
check_digitsstring
formattedstring

IBAN formatted in groups of 4

error'invalid_format' | 'unsupported_country' | 'wrong_length' | 'checksum_failed'
error_detailstring
cost_usdcnumber required
processing_msnumber

Example response

{
  "country": {
    "code": "GB",
    "name": "United Kingdom"
  },
  "check_digits": "29",
  "bic": {
    "code": "NWBKGB2L",
    "lei": "851WYGNLUQLFZBSYGB56",
    "lei_status": "ACTIVE",
    "address": {
      "street": "Kaiserstraße 16",
      "post_code": "60311",
      "region": "DE-HE",
      "city": "Frankfurt am Main",
      "country": "DE",
      "source": "GLEIF",
      "language": "de",
      "as_of": "2026-02-24"
    }
  },
  "formatted": "GB29 NWBK 6016 1331 9268 19",
  "clearing": {
    "iid": "00230",
    "name": "UBS Switzerland AG",
    "town": "Zürich"
  },
  "reference_check": {
    "reference": "210000000003139471430009017",
    "as_of": "2026-02",
    "pairing_as_of": "2026-02"
  },
  "cost_usdc": 0.005,
  "official_identity": {
    "name": "Alpha Bank Example, S.A.",
    "category": "Credit Institution",
    "source": "European Central Bank, list of monetary financial institutions (free at ecb.europa.eu)",
    "attribution": "Own elaboration based on data from the Banco de España website (www.bde.es)"
  },
  "modulus_check": {
    "source": "Vocalink modulus weight table (published for Pay.UK)",
    "table_fetched_on": "2026-08-14"
  },
  "compliance": {
    "sanctions": {
      "matched_lists": [
        "OFAC"
      ]
    },
    "flags": [
      "fatf_grey_list",
      "emi_issuer",
      "no_vop"
    ]
  }
}

Changes