Management APIAgent wallet management

Register Hyperliquid Agent Wallet

Register a new agent wallet for automated trading in Hyperliquid. The private key is encrypted and stored securely.

POST
/v1/hl/agent_wallet/register

Authorization

ApiKeyAuth
x-api-key<token>

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

In: header

Request Body

application/json

name*stringrequired

Agent wallet alias

Example: My Trading Bot Agent Wallet

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.hypereth.io/v1/hl/agent_wallet/register" \  -H "Content-Type: application/json" \  -d '{    "name": "My Trading Bot Agent Wallet"  }'
{
  "address": "0x742d35Cc6634C0532925a3b8D489C8A4c40F8C7B",
  "name": "My Trading Bot Agent Wallet",
  "created_at": "2019-08-24T14:15:22Z"
}
{
  "error": "Invalid API key",
  "code": 1001,
  "details": {}
}
{
  "error": "Invalid API key",
  "code": 1001,
  "details": {}
}
{
  "error": "Invalid API key",
  "code": 1001,
  "details": {}
}