Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
wallets
List Wallets
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/wallets \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "object": "<string>",
      "account_id": "<string>",
      "currency": "<string>",
      "network": "<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 cryptocurrency currency code
statuses
array
Filter by status (e.g., active, suspended)
start_date
string
Filter wallets created on or after this date (ISO 8601 format)
end_date
string
Filter wallets 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 wallet 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": "wlt_1234567890abcdef",
      "object": "wallet",
      "account_id": "acc_1234567890abcdef",
      "currency": "USDC_ETHEREUM",
      "network": "ethereum",
      "label": "Treasury USDC",
      "status": "active",
      "created": "2024-01-01T00:00:00Z"
    }
  ],
  "page": 1,
  "size": 10,
  "total": 1,
  "pages": 1
}