Business API
Retrieve account's full bank details
api
get
/accounts/{account_id}/bank-details

Retrieve account's full bank details

Get all the bank details of one of your accounts. Specify the account by its ID.

For more information, see the guides: Get your account details.

Request

Path Parameters
Path Parameters

Response

The bank details of a specific account

Response body
Body array of objects
Was this page helpful?
GET
/accounts . /{account_id} . /bank-details . 
Parameters
curl -L -g -X GET 'https://b2b.revolut.com/api/1.0/accounts/{account_id}/bank-details' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response body samples
[
{
"iban": "GB66REVO00996995908888",
"bic": "REVOGB21",
"beneficiary": "International account",
"beneficiary_address": {
"street_line1": "Revolut LTD",
"street_line2": "1 Canada Square",
"city": "London",
"country": "GB",
"postcode": "E14 5AB"
},
"bank_country": "GB",
"pooled": false,
"schemes": [
"swift"
],
"estimated_time": {
"unit": "days",
"min": 1,
"max": 3
}
}
]