Account & Wallet - Private
GET /v3/account
/v3/account
Get account information
subAcc
STRING
NO
Name of sub account. If no subAcc is given, then the response contains only the account linked to the API-Key. Multiple subAccs can be separated with a comma, maximum of 10 subAccs, e.g. subone,subtwo
accountId
STRING
Account ID
name
STRING
Account name
accountType
STRING
Account type LINEAR
, STANDARD
, PORTFOLIO
balances
LIST of dictionaries
asset
STRING
Asset name
total
STRING
Total balance
available
STRING
Available balance
reserved
STRING
Reserved balance
lastUpdatedAt
STRING
Last balance update timestamp
positions
LIST of dictionaries
Positions - only returned if the account has open positions
marketCode
STRING
Market code
baseAsset
STRING
Base asset
counterAsset
STRING
Counter asset
position
STRING
Position size
entryPrice
STRING
Entry price
markPrice
STRING
Mark price
positionPnl
STRING
Position PNL
estLiquidationPrice
STRING
Estimated liquidation price
lastUpdatedAt
STRING
Last position update timestamp
marginBalance
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin. Isolated margin + Unrealized position PnL
maintenanceMargin
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
marginRatio
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
leverage
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
collateral
STRING
Total collateral balance
notionalPositionSize
STRING
Notional position size in OX
portfolioVarMargin
STRING
Initial margin
maintenanceMargin
STRING
Maintenance margin. The minimum amount of collateral required to avoid liquidation
marginRatio
STRING
Margin ratio. Orders are rejected/cancelled if the margin ratio reaches 50, and liquidation occurs if the margin ratio reaches 100
riskRatio
STRING
Ignore.
liquidating
BOOL
Available values: true
and false
feeTier
STRING
Fee tier
createdAt
STRING
Timestamp indicating when the account was created
GET /v3/account/names
/v3/account/names
Get sub account information
accountId
STRING
Account ID
name
STRING
Account name
GET /v3/wallet
/v3/wallet
Get account or sub-account wallet
subAcc
STRING
NO
Max 5
type
STRING
NO
DEPOSIT, WITHDRAWAL, etc, default return all, most recent first
limit
LONG
NO
Default 200, max 500
startTime
LONG
NO
Millisecond timestamp. Default 24 hours ago. startTime and endTime must be within 7 days of each other. startTime is INCLUSIVE
endTime
LONG
NO
Millisecond timestamp. Default time now. startTime and endTime must be within 7 days of each other. endTime is INCLUSIVE
accountId
STRING
Account ID
name
STRING
Account name
walletHistory
LIST of dictionaries
id
STRING
A unique ID
amount
STRING
Amount
asset
STRING
Asset name
type
STRING
createdAt/lastUpdatedAt
STRING
Millisecond timestamp created time or updated time
POST /v3/transfer
Sub-account balance transfer — TODO
asset
STRING
YES
quantity
STRING
YES
fromAccount
STRING
YES
toAccount
STRING
YES
asset
STRING
quantity
STRING
fromAccount
STRING
toAccount
STRING
transferredAt
STRING
Millisecond timestamp
GET /v3/transfer
/v3/transfer
Sub-account balance transfer history
asset
STRING
NO
Default all assets
limit
LONG
NO
Default 50, max 200
startTime
LONG
NO
Millisecond timestamp. Default 24 hours ago. startTime and endTime must be within 7 days of each other. startTime is INCLUSIVE
endTime
LONG
NO
Millisecond timestamp. Default time now. startTime and endTime must be within 7 days of each other. endTime is INCLUSIVE
asset
STRING
quantity
STRING
fromAccount
STRING
toAccount
STRING
id
STRING
status
STRING
transferredAt
STRING
Millisecond timestamp
GET /v3/balances
/v3/balances
asset
STRING
NO
Default all assets
subAcc
STRING
NO
Name of sub account. If no subAcc is given, then the response contains only the account linked to the API-Key. Multiple subAccs can be separated with a comma, maximum of 10 subAccs, e.g. subone,subtwo
accountId
STRING
Account ID
name
STRING
The parent account is named "main" and comes first
balances
LIST of dictionaries
asset
STRING
Asset name
total
STRING
Total balance (available + reserved)
available
STRING
Available balance
reserved
STRING
Reserved balance
lastUpdatedAt
STRING
Timestamp of updated at
GET /v3/positions
/v3/positions
Returns position data
marketCode
STRING
NO
Default all markets
subAcc
STRING
NO
Name of sub account. If no subAcc is given, then the response contains only the account linked to the API-Key. Multiple subAccs can be separated with a comma, maximum of 10 subAccs, e.g. subone,subtwo
accountId
STRING
Account ID
name
STRING
The parent account is named "main" and comes first
positions
LIST of dictionaries
marketCode
STRING
Contract symbol, e.g. 'BTC-oUSD-SWAP-LIN'
baseAsset
STRING
counterAsset
STRING
position
STRING
Position size, e.g. '0.94'
entryPrice
STRING
Average entry price
markPrice
STRING
positionPnl
STRING
Postion profit and lost
estLiquidationPrice
STRING
Estimated liquidation price, return 0 if it is negative(<0)
lastUpdated
STRING
Timestamp when position was last updated
marginBalance
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin. Isolated margin + Unrealized position PnL
maintenanceMargin
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
marginRatio
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
leverage
STRING
[Currently Unavailable] Appears in the position section only for positions using isolated margin
GET /v3/funding
/v3/funding
Get funding payments by marketCode and sorted by time in descending order.
marketCode
STRING
NO
e.g. BTC-oUSD-SWAP-LIN
limit
LONG
NO
default is 200
, max is 500
startTime
LONG
NO
Millisecond timestamp. Default 24 hours ago. startTime and endTime must be within 7 days of each other. startTime is INCLUSIVE
endTime
LONG
NO
Millisecond timestamp. Default time now. startTime and endTime must be within 7 days of each other. endTime is EXCLUSIVE
id
STRING
A unique ID
marketCode
STRING
Market code
payment
STRING
Funding payment
fundingRate
STRING
Funding rate
position
STRING
Position
indexPrice
STRING
index price
createdAt
STRING
Timestamp of this response
Last updated