Skip to main content
GET
/
api
/
hyperliquid
/
accounts
/
{account_id}
/
wallet
cURL
curl --request GET \
  --url https://api.production.hyperoru.com/api/hyperliquid/accounts/{account_id}/wallet \
  --header 'Authorization: Bearer <token>'
{
  "account_id": 123,
  "environment": "<string>",
  "id": 123,
  "is_active": true,
  "default_leverage": 123,
  "key_type": "<string>",
  "max_leverage": 123,
  "wallet_address": "<string>"
}

Authorizations

Authorization
string
header
required

Session token issued by POST /api/users/login, transported as Authorization: Bearer <token>.

Path Parameters

account_id
integer<int32>
required

Account ID

Response

Wallet details

Generic wallet descriptor used by both Hyperliquid and Binance listings.

account_id
integer<int32>
required
environment
string
required
id
integer<int32>
required
is_active
boolean
required
default_leverage
integer<int32> | null
key_type
string | null
max_leverage
integer<int32> | null
wallet_address
string | null