GET
/
v3
/
asset
/
wallet
/
history
cURL
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
}


Limit: 10 requests per 60 seconds
Get your unique deposit address by token
{
    "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
}


Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

id
string

use when query specific transaction id (the result of withdrawal or internal transfer.)

network
string

network name you want to search (from /v1/public/token)

token
string

token name you want to search

type
string

BALANCE/COLLATERAL

tokenSide
string

DEPOSIT/WITHDRAW

status
string

NEW/CONFIRMING/PROCESSING/COMPLETED/CANCELED

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.