v4
latestOpenAPI 3.1.02026-08-0117737.6 KBCompliance
Full IBAN compliance check
Validates an IBAN and returns everything from /v1/iban/validate PLUS a full compliance layer: sanctions screening (OFAC), 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
Example request
{
"iban": "DE89370400440532013000"
}Response
Compliance check result (includes full IBAN validation + compliance layer)
Example response
{
"country": {
"code": "GB",
"name": "United Kingdom"
},
"check_digits": "29",
"bic": {
"code": "NWBKGB2L"
},
"formatted": "GB29 NWBK 6016 1331 9268 19",
"clearing": {
"iid": "00230",
"name": "UBS Switzerland AG",
"town": "Zürich"
},
"cost_usdc": 0.005,
"compliance": {
"sanctions": {
"matched_lists": [
"OFAC"
]
},
"flags": [
"fatf_grey_list",
"emi_issuer",
"no_vop"
]
}
}