Retrieve your transaction history, including trades and transfers. It returns an array of objects, each of which has details for each individual transaction.
Start date for your query. Results will include transactions that occurred after this date. Unix timestamp in ms. Default: utcnow - 24hrs
to
timestamp
End date for your query. Results will include transactions that occurred before this date. Unix timestamp in ms. Default: utcnow
limit
int
Maximum number of results to be returned by the request. Default: 250. Maximum: 1000
after
int
Pagination parameter. Return results that occurred after (newer) than the specified ID (id from response body).
Use this parameter when you want to retrieve only new transactions from a previous request.
offset
int
Pagination parameter. Return results that occurred before (older) than the results from a previous request.
Specify the number of entries you've already had returned to you to get the next batch. e.g. If you retrieved 500 results in your previous request and you want the next 500, set the offset to 501.
types
string
Filter by transaction type. To filter by more than one type, separate each type with a comma. Possible values: charge, deposit, withdraw, credit, buy, sell
pending
boolean
Specify whether the results should include transactions that are NOT completed (Done). e.g. pending deposits or withdrawals. Only applicable to deposit and withdrawtypes. Default: false