GET
/
v3
/
asset
/
balances
curl --request GET \
  --url https://api.woox.io/v3/asset/balances \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>' \
  --data 'token=<string>'
{
    "success": true,
    "data": {
        "holding": [
            {
                "token": "WOO",
                "holding": "1",
                "frozen": "0",
                "staked": "0",
                "unbonding": "0",
                "vault": "0",
                "interest": "0",
                "earn": "0",
                "pendingShortQty": "0",
                "pendingLongQty": "0",
                "availableBalance": "0",
                "averageOpenPrice": "0.23432",
                "markPrice": "0.25177",
                "pnl24H": "0.0",
                "fee24H": "0.0",
                "timestamp": 1673323746259
            },
            ...
        ]
    },
    "timestamp": 1673323746259
}


Limit: 10 requests per 1 seconds
Get account balances in trading wallet, vault, staking and earn products.

{
    "success": true,
    "data": {
        "holding": [
            {
                "token": "WOO",
                "holding": "1",
                "frozen": "0",
                "staked": "0",
                "unbonding": "0",
                "vault": "0",
                "interest": "0",
                "earn": "0",
                "pendingShortQty": "0",
                "pendingLongQty": "0",
                "availableBalance": "0",
                "averageOpenPrice": "0.23432",
                "markPrice": "0.25177",
                "pnl24H": "0.0",
                "fee24H": "0.0",
                "timestamp": 1673323746259
            },
            ...
        ]
    },
    "timestamp": 1673323746259
}


Headers

x-api-key
string
required

api-key

Example:

"abcdef123456"

x-api-signature
string
required

api-signature

Example:

"signaturestring"

x-api-timestamp
string
required

api-timestamp

Example:

"1718943200000"

Body

application/x-www-form-urlencoded

The body is of type object.

Response

200 - application/json

The response is of type object.