Skip to main content
GET
/
accounts
/
{accountId}
/
virtual-bank-accounts
List virtual bank accounts
curl --request GET \
  --url https://api.venlyfinance.com/v1/accounts/{accountId}/virtual-bank-accounts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": [
    {
      "id": "4d5e6f70-8192-4a3b-9c4d-5e6f7081920a",
      "accountId": "b2a1f0e9-8c7d-4e3a-9f21-0a1b2c3d4e5f",
      "bankAccountType": "EUR_SEPA",
      "name": "EUR Payouts",
      "status": "ACTIVE",
      "currency": "EUR",
      "targetCryptocurrency": "USDC",
      "iban": "DE89370400440532013000",
      "bic": "DEUTDEDB",
      "bankName": "Example Bank",
      "beneficiaryName": "Jane Doe",
      "referenceCode": "VFY-7K2Q-931",
      "createdAt": "2026-01-15T09:30:00",
      "updatedAt": "2026-01-15T09:30:00"
    }
  ],
  "pagination": {
    "pageNumber": 1,
    "pageSize": 20,
    "numberOfElements": 1,
    "numberOfPages": 1,
    "hasNextPage": false,
    "hasPreviousPage": false
  }
}
Returns the account’s virtual bank accounts (for example, EUR SEPA IBANs) used to receive fiat pay-ins.

Authorizations

Path Parameters

accountId
string<uuid>
required

Unique account identifier

Query Parameters

sortOn
string
default:createdAt

Field to sort by

sortOrder
enum<string>
default:ASC

Sort direction

Available options:
ASC,
DESC
page
integer<int32>
default:1

Page number (1-based indexing)

Required range: x >= 1
size
integer<int32>
default:100

Number of items per page

Required range: x >= 1

Response

List of virtual bank accounts

success
boolean

Indicates whether the request was successful

result
object[]
pagination
object

Pagination metadata (top-level sibling of result)