GET
/
v1
/
perps
/
hyperliquid
/
account
/
{address}
Get Account
curl --request GET \
  --url https://api.example.com/v1/perps/hyperliquid/account/{address}

Upstream Mapping

Maps to Hyperliquid’s POST /info with { "type": "clearinghouseState", "user": "<address>" }.

Request

address
string
required
Wallet address (e.g., 0x1234...abcd)

Example

curl -H "X-API-Key: $API_KEY" \
  https://api.perps.studio/v1/perps/hyperliquid/account/0x1234567890abcdef1234567890abcdef12345678
Example Response
{
  "equity": "50000.00",
  "availableMargin": "35000.00",
  "usedMargin": "15000.00",
  "unrealizedPnl": "1250.00",
  "totalPositionValue": "150000.00"
}