Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
virtual-accounts
List Virtual Accounts
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/virtual-accounts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "object": "<string>",
      "account_id": "<string>",
      "currency": "<string>",
      "label": "<string>",
      "status": "<string>",
      "created": "<string>"
    }
  ],
  "page": 123,
  "size": 123,
  "total": 123,
  "pages": 123
}

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)

Query Parameters

currency
string
Filter by ISO 4217 currency code
statuses
array
Filter by status (e.g., active, suspended)
start_date
string
Filter accounts created on or after this date (ISO 8601 format)
end_date
string
Filter accounts created before this date (ISO 8601 format)
page
integer
default:"1"
Page number (minimum 1)
size
integer
default:"10"
Items per page (1-100)

Response

items
array
Array of virtual account objects
page
integer
Current page number
size
integer
Items per page
total
integer
Total number of items
pages
integer
Total number of pages

Response Example

{
  "items": [
    {
      "id": "va_1234567890abcdef",
      "object": "virtual_account",
      "account_id": "acc_1234567890abcdef",
      "currency": "EUR",
      "label": "EU Collections",
      "status": "active",
      "created": "2024-01-01T00:00:00Z"
    }
  ],
  "page": 1,
  "size": 10,
  "total": 1,
  "pages": 1
}