Management APIAgent wallet management

List Hyperliquid Agent Wallets

List all registered Hyperliquid agent wallets for the authenticated user.

GET
/v1/hl/agent_wallet

Authorization

ApiKeyAuth
x-api-key<token>

API key for HyperETH authentication. Obtain via POST /v1/api_key/register endpoint.

In: header

Response Body

application/json

application/json

curl -X GET "https://api.hypereth.io/v1/hl/agent_wallet"
{
  "agent_wallets": [
    {
      "address": "0x742d35Cc6634C0532925a3b8D489C8A4c40F8C7B",
      "name": "My Trading Bot Key",
      "is_active": true,
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "error": "Invalid API key",
  "code": 1001,
  "details": {}
}