Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
wallets
/
{wallet_id}
Get Wallet
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/wallets/{wallet_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "account_id": "<string>",
  "currency": "<string>",
  "network": "<string>",
  "addresses": [
    {
      "address": "<string>",
      "tag": "<string>"
    }
  ],
  "label": "<string>",
  "status": "<string>",
  "created": "<string>",
  "updated": "<string>"
}

Path Parameters

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

Response

id
string
Wallet identifier (starts with wlt_)
object
string
Always returns "wallet"
account_id
string
Parent account ID
currency
string
Cryptocurrency currency
network
string
Blockchain network
addresses
array
Wallet addresses
label
string
User-friendly label
status
string
Wallet status: active, suspended, or inactive
created
string
ISO 8601 timestamp when created
updated
string
ISO 8601 timestamp when last updated

Response Example

{
  "id": "wlt_1234567890abcdef",
  "object": "wallet",
  "account_id": "acc_1234567890abcdef",
  "currency": "USDC_ETHEREUM",
  "network": "ethereum",
  "addresses": [
    {
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "tag": null
    }
  ],
  "label": "Treasury USDC Wallet",
  "status": "active",
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}