v1

latestSwagger 2.02026-07-179553242.0 KB
User

Get a history of all of your wallet transactions (deposits, withdrawals, PNL).

get/user/walletHistory

Query parameters

currencystring

Any currency. For all currencies, see <a href="#!/Wallet/Wallet_getAssetsConfig">asset config endpoint</a>. For all currencies specify "all"

countnumber double

Number of results to fetch. Fetch results from start to start + count. Max: 10,000 rows.

startnumber double

Starting point for results, integer. Default 0.

targetAccountIdnumber double

AccountId to view the history of, must be a paired account with the authorised user requesting the history.

reverseboolean

Start from the latest transaction record. Default true.

Response

Request was successful

transactIDstring guid required
accountinteger
currencystring
networkstring
transactTypestring
amountinteger
feeinteger
transactStatusstring
addressstring
txstring
textstring
transactTimestring date-time
timestampstring date-time
walletBalanceinteger

Example response

[
  {
    "amount": 6,
    "address": "address",
    "tx": "tx",
    "transactID": "transactID",
    "fee": 1,
    "transactStatus": "transactStatus",
    "network": "network",
    "transactType": "transactType",
    "walletBalance": 5,
    "transactTime": "2000-01-23T04:56:07.000+00:00",
    "currency": "currency",
    "text": "text",
    "account": 0,
    "timestamp": "2000-01-23T04:56:07.000+00:00"
  }
]