curl --request GET \
--url https://api.addressy.com/BankAccountValidation/Batch/Validate/v1.00/json6.ws{
"Items": [
{
"OriginalAccountNumber": "12345678",
"OriginalSortCode": "112233",
"IsCorrect": "False",
"IsDirectDebitCapable": "False",
"StatusInformation": "UnknownSortCode",
"CorrectedSortCode": "",
"CorrectedAccountNumber": "",
"IBAN": "",
"Bank": "",
"BankBIC": "",
"Branch": "",
"BranchBIC": "",
"ContactAddressLine1": "",
"ContactAddressLine2": "",
"ContactPostTown": "",
"ContactPostcode": "",
"ContactPhone": "",
"ContactFax": ""
}
]
}Validate multiple UK bank accounts and sort codes in bulk. Returns corrected details, IBAN, and branch information.
curl --request GET \
--url https://api.addressy.com/BankAccountValidation/Batch/Validate/v1.00/json6.ws{
"Items": [
{
"OriginalAccountNumber": "12345678",
"OriginalSortCode": "112233",
"IsCorrect": "False",
"IsDirectDebitCapable": "False",
"StatusInformation": "UnknownSortCode",
"CorrectedSortCode": "",
"CorrectedAccountNumber": "",
"IBAN": "",
"Bank": "",
"BankBIC": "",
"Branch": "",
"BranchBIC": "",
"ContactAddressLine1": "",
"ContactAddressLine2": "",
"ContactPostTown": "",
"ContactPostcode": "",
"ContactPhone": "",
"ContactFax": ""
}
]
}The key to use to authenticate to the service.
The bank account number to validate.
The branch sortcode for the account number.
Success
Show child attributes
The original AccountNumber passed to validate, excluding any non numeric characters.
The original SortCode passed to validate, excluding any non numeric characters.
Indicates whether the account number and sortcode are valid.
Indicates whether the branch associated with this account can accept direct debits.
More detail about the outcome of the validation process. Describes reasons validation failed or changes made to pass validation. DetailsChanged indicates that the account and sortcode should be changed for BACs submission (check CorrectedAccountNumber and CorrectedSortCode). CautiousOK is set where the sortcode exists but no validation rules are set for the bank (very rare).
The correct version of the SortCode. This will be 6 digits long with no hyphens. It may differ from the original sortcode.
The correct version of the AccountNumber. This will be 8 digits long and in the form expected for BACs submission.
The correctly formatted IBAN for the account.
The name of the banking institution.
The banking institution's BIC, also know as the SWIFT BIC.
The name of the account holding branch.
The branch's BIC.
Line 1 of the branch's contact address. NB: This is the address to be used for BACs enquiries and may be a contact centre rather than the branch's address.
Line 2 of the branch's contact address.
The branch's contact post town.
The branch's contact postcode.
The branch's contact phone number.
The branch's contact fax number.
Was this page helpful?