Correspondent bank account object

Learn how to use Swift correspondent bank account objects.

A correspondent bank account is a nostro/loro or settlement account used for correspondent banking purposes with Swift.

Below are details of the correspondent bank account object properties:

AttributeDescription
id
string
The correspondent bank account ID.
object
string
Always correspondent_bank_account.
status
string
The correspondent bank account status. Either active or disabled.
correspondent_bank_id
string
The UUID of the related correspondent bank object.
nostro_account_number
string
The nostro/loro or settlement account number. Usually an IBAN or a domestic account number.
connected_account_id
string
If relevant, the UUID of the connected account object that represent this correspondent bank account.
currencies
array[string]
The currency (or list of currencies, in case of a multi-currency account) of the correspondent bank account.
created_at
datetime
The creation date of the correspondent bank account record.

Below is an example of a correspondent bank account:

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "object": "correspondent_bank_account",
  "status": "active",
  "correspondent_bank_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "nostro_account_number": "13856779",
  "connected_account_id": "11c8412e-1dad-4574-bab8-695614ff71be",
  "currencies": ["GBP"],
  "created_at": "2026-08-19T10:26:17.161Z"
}