For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get bank by IBAN

Resolve the recipient bank from an IBAN when creating a payout contact for a country that supports IBAN. Public metadata; no authentication required.

get
/api/v1/banks/iban/{ibanNo}
Path parameters
ibanNostringRequired

The recipient IBAN to resolve.

Responses
200

Standard envelope. data carries the resolved bank details.

application/json

Standard UR OpenAPI response envelope. code 0 means success; a non-zero code is a business error described by message.

codeintegerRequired

0 on success; non-zero business error code.

messagestringRequired

Human-readable explanation. May be empty on success.

dataanyOptional

Endpoint-specific metadata payload.

get/api/v1/banks/iban/{ibanNo}
GET /api/v1/banks/iban/{ibanNo} HTTP/1.1
Host: openapi.ur.app
Accept: */*
200

Standard envelope. data carries the resolved bank details.

{
  "code": 1,
  "message": "text",
  "data": null
}

Last updated