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.

GET
/accounts

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
}