v1

latestOpenAPI 3.1.02026-07-226250251.5 KB
Virtual Accounts

List Virtual Accounts V2

Retrieve a list of all virtual accounts for a specific customer

get/v2/customers/{customer_id}/virtual-accounts

Path parameters

customer_idstring uuid required

Unique identifier for the customer

Query parameters

per_pageinteger

Number of items to return per page

current_pageinteger

The page number to retrieve

Response

Virtual accounts retrieved successfully

Example response

{
  "data": {
    "virtual_accounts": [
      {
        "id": "024e784b-bc27-4a4c-82ee-80000fbf53c5",
        "status": "ACTIVE",
        "developer_fee_fixed": 0.3,
        "customer_id": "0fb72092-22a8-4df8-a6d9-1a28f86b7d44",
        "created_at": "2026-04-04T11:05:20.963676Z",
        "updated_at": "2026-04-04T11:05:20.963676Z",
        "deposit_instructions": {
          "currency": "USD",
          "bank_name": "Bank of Nowhere",
          "bank_address": "1800 North Pole St., Orlando, FL 32801",
          "bank_routing_number": "101019644",
          "bank_account_number": "2611508020",
          "payment_rails": [
            "ACH",
            "FEDWIRE"
          ]
        },
        "destination": {
          "currency": "USDC",
          "destination_chain": "POLYGON",
          "address": "0x6e41e83d406185b358bd72111ab1206cb82eb67f"
        }
      }
    ],
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 1,
      "total": 2
    }
  }
}