Skip to main content
GET
/
v1
/
aster
/
fapi
/
v3
/
account
Account Information V3
curl --request GET \
  --url https://api.hypereth.io/v1/aster/fapi/v3/account \
  --header 'Authorization: <api-key>'
{
  "feeTier": 123,
  "canTrade": true,
  "canDeposit": true,
  "canWithdraw": true,
  "updateTime": 123,
  "totalInitialMargin": "<string>",
  "totalMaintMargin": "<string>",
  "totalWalletBalance": "<string>",
  "totalUnrealizedProfit": "<string>",
  "totalMarginBalance": "<string>",
  "totalPositionInitialMargin": "<string>",
  "totalOpenOrderInitialMargin": "<string>",
  "totalCrossWalletBalance": "<string>",
  "totalCrossUnPnl": "<string>",
  "availableBalance": "<string>",
  "maxWithdrawAmount": "<string>",
  "assets": [
    {
      "accountAlias": "<string>",
      "asset": "<string>",
      "balance": "<string>",
      "crossWalletBalance": "<string>",
      "crossUnPnl": "<string>",
      "availableBalance": "<string>",
      "maxWithdrawAmount": "<string>",
      "marginAvailable": true,
      "updateTime": 123
    }
  ],
  "positions": [
    {
      "symbol": "<string>",
      "positionAmt": "<string>",
      "entryPrice": "<string>",
      "markPrice": "<string>",
      "unRealizedProfit": "<string>",
      "liquidationPrice": "<string>",
      "leverage": "<string>",
      "maxNotionalValue": "<string>",
      "marginType": "<string>",
      "isolatedMargin": "<string>",
      "isAutoAddMargin": "<string>",
      "positionSide": "<string>",
      "notional": "<string>",
      "isolatedWallet": "<string>",
      "updateTime": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Web3 authentication using user, signer, nonce, and signature parameters

Query Parameters

recvWindow
integer
timestamp
integer
required
nonce
string
required

Microsecond timestamp

user
string
required

Ethereum address

signer
string
required

Signer Ethereum address

signature
string
required

Ethereum signature

Response

200 - application/json

Account information

feeTier
integer
canTrade
boolean
canDeposit
boolean
canWithdraw
boolean
updateTime
integer
totalInitialMargin
string
totalMaintMargin
string
totalWalletBalance
string
totalUnrealizedProfit
string
totalMarginBalance
string
totalPositionInitialMargin
string
totalOpenOrderInitialMargin
string
totalCrossWalletBalance
string
totalCrossUnPnl
string
availableBalance
string
maxWithdrawAmount
string
assets
object[]
positions
object[]