GET
/
v3
/
asset
/
token
/
history
curl --request GET \
  --url https://api.woox.io/v3/asset/token/history \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>'
{
  "success": true,
  "timestamp": 123,
  "data": {
    "rows": [
      {
        "id": 123,
        "type": "<string>",
        "token": "<string>",
        "amount": "<string>",
        "timestamp": 123
      }
    ],
    "meta": {
      "total": 123,
      "recordsPerPage": 123,
      "currentPage": 123
    }
  }
}

Limit 10 requests per 60 seconds
Get account token balance change history

Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

type
string

WITHDRAW/DEPOSIT/FIAT_WITHDRAW/FIAT_DEPOSIT/EARN/VAULT_WITHDRAW/VAULT_DEPOSIT/YIELD_TO_BALANCE/CREDIT/DISTRIBUTION/REFERRAL/SUB_ACCOUNT_TRANSFER/REBATE/LIQUIDATION/SPECIAL/STAKING/UNSTAKING/UNSTAKING_FEE/INTEREST/CONVERT/FUNDING_FEE/REALIZED_PNL/RFQ/ COPY_FEE / COPY_PROFIT_SHARED /SPOT_TRANSACTION / TRANSACTION_FEE

startTime
integer

start www time in unix timestamp

endTime
integer

end time in unix timestamp

page
integer
default:1

the page you wish to query.

size
integer
default:25

the page size you wish to query, default = 25, 1000 at max.

Response

200 - application/json

The response is of type object.