Unified REST APIAgent access

Programmatic Venue Setup (Model 1)

Fully automated venue setup using Privy agentic wallets. Available for: hyperliquid, hyena. Requires Privy to be configured on the server.

POST
/account/venues/{venue}/setup

Authorization

ApiKeyAuth
X-API-KEY<token>

In: header

Path Parameters

venue*enum<string>required
Available options: hyperliquidhyena

Request Body

application/json

privy_wallet_id*stringrequired

Your Privy wallet ID

wallet_address*stringrequired

Your main wallet address

Response Body

application/json

curl -X POST "https://api.hypereth.io/v2/account/venues/hyperliquid/setup" \  -H "Content-Type: application/json" \  -d '{    "privy_wallet_id": "string",    "wallet_address": "string"  }'
{
  "venue": "hyperliquid",
  "status": "active",
  "wallet_address": "0x5555555555555555555555555555555555555555",
  "expires_at": "2026-04-17T15:30:00Z"
}
Empty
Empty
Empty