curl --request GET \
--url https://api.woox.io/v3/asset/wallet/history \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'{
"success": true,
"data": {
"rows": [
{
"createdTime": "1579399877.041", // Unix epoch time in seconds
"updatedTime": "1579399877.041", // Unix epoch time in seconds
"id": "202029292829292",
"externalId": "202029292829292",
"applicationId": null,
"token": "ETH",
"targetAddress": "0x31d64B3230f8baDD91dE1710A65DF536aF8f7cDa",
"sourceAddress": "0x70fd25717f769c7f9a46b319f0f9103c0d887af0",
"confirmingThreshold":12,
"confirmedNumber":12,
"extra": "",
"type": "BALANCE",
"tokenSide": "DEPOSIT",
"amount": "1000",
"txId": "0x8a74c517bc104c8ebad0c3c3f64b1f302ed5f8bca598ae4459c63419038106b6",
"feeToken": null,
"feeAmount": null,
"status": "CONFIRMING"
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
Get Wallet History
curl --request GET \
--url https://api.woox.io/v3/asset/wallet/history \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-signature: <x-api-signature>' \
--header 'x-api-timestamp: <x-api-timestamp>'{
"success": true,
"data": {
"rows": [
{
"createdTime": "1579399877.041", // Unix epoch time in seconds
"updatedTime": "1579399877.041", // Unix epoch time in seconds
"id": "202029292829292",
"externalId": "202029292829292",
"applicationId": null,
"token": "ETH",
"targetAddress": "0x31d64B3230f8baDD91dE1710A65DF536aF8f7cDa",
"sourceAddress": "0x70fd25717f769c7f9a46b319f0f9103c0d887af0",
"confirmingThreshold":12,
"confirmedNumber":12,
"extra": "",
"type": "BALANCE",
"tokenSide": "DEPOSIT",
"amount": "1000",
"txId": "0x8a74c517bc104c8ebad0c3c3f64b1f302ed5f8bca598ae4459c63419038106b6",
"feeToken": null,
"feeAmount": null,
"status": "CONFIRMING"
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
{
"success": true,
"data": {
"rows": [
{
"createdTime": "1579399877.041", // Unix epoch time in seconds
"updatedTime": "1579399877.041", // Unix epoch time in seconds
"id": "202029292829292",
"externalId": "202029292829292",
"applicationId": null,
"token": "ETH",
"targetAddress": "0x31d64B3230f8baDD91dE1710A65DF536aF8f7cDa",
"sourceAddress": "0x70fd25717f769c7f9a46b319f0f9103c0d887af0",
"confirmingThreshold":12,
"confirmedNumber":12,
"extra": "",
"type": "BALANCE",
"tokenSide": "DEPOSIT",
"amount": "1000",
"txId": "0x8a74c517bc104c8ebad0c3c3f64b1f302ed5f8bca598ae4459c63419038106b6",
"feeToken": null,
"feeAmount": null,
"status": "CONFIRMING"
}
...
],
"meta": {
"total": 46,
"recordsPerPage": 1,
"currentPage": 1
}
},
"timestamp": 1690192103430
}
"abcdef123456"
"signaturestring"
"1718943200000"
use when query specific transaction id (the result of withdrawal or internal transfer.)
network name you want to search (from /v1/public/token)
token name you want to search
BALANCE/COLLATERAL
DEPOSIT/WITHDRAW
NEW/CONFIRMING/PROCESSING/COMPLETED/CANCELED
start www time in unix timestamp
end time in unix timestamp
the page you wish to query.
the page size you wish to query, default = 25, 1000 at max.
true
timestamp
Show child attributes
Show child attributes
The time the transaction was created, in Unix epoch time (seconds).
The time the transaction was last updated, in Unix epoch time (seconds).
The unique identifier for the transaction.
The external identifier for the transaction, if applicable.
The application ID related to the transaction, or null if not applicable.
The token symbol involved in the transaction, e.g., 'ETH'.
The target blockchain address for the transaction.
The source blockchain address for the transaction.
The number of confirmations required for the transaction to be considered confirmed.
The current number of confirmations received for the transaction.
Additional information about the transaction, if any.
The transaction type, e.g., 'BALANCE'.
BALANCE, TRANSFER, TRADE, FEE, OTHER The token side for the transaction, e.g., 'DEPOSIT' or 'WITHDRAWAL'.
DEPOSIT, WITHDRAWAL The amount of the token involved in the transaction.
The blockchain transaction ID.
The token used to pay transaction fees, or null if not applicable.
The amount of fees paid for the transaction, or null if not applicable.
The current status of the transaction, e.g., 'CONFIRMING', 'SUCCEEDED', or 'FAILED'.
CONFIRMING, SUCCEEDED, FAILED