Unified REST APIAccount
Get Accounts
Get all accounts associated with the API key.
Platform Support: Available on all supported platforms.
This endpoint returns a list of all accounts registered under the current API key,
including the default account and any additional accounts configured via strategy_signers.
Authorization
ApiKeyAuth X-API-KEY<token>
In: header
Response Body
application/json
curl -X GET "https://api.hypereth.io/v2/hyperliquid/accounts"{
"accounts": [
{
"accountId": "default",
"address": "0x1234567890abcdef1234567890abcdef12345678",
"isDefault": true
},
{
"accountId": "acc_A",
"address": "0xabcdef1234567890abcdef1234567890abcdef12",
"isDefault": false
},
{
"accountId": "acc_B",
"address": "0xfedcba0987654321fedcba0987654321fedcba09",
"isDefault": false
}
],
"hyperethTimestamp": 1710000001000
}Get Balance GET
Get account balance information. **Multi-account support**: Use `accountId` to query a specific account's balance. If not specified, defaults to the primary account.
Get Position GET
Get position information. **Platform Support**: Available on hyperliquid, aster, lighter. **Not available on kuru** (spot DEX - no positions).