get https://api.zondacrypto.exchange/rest/trading/history/transactions
This endpoint returns a list of all finalized transactions. Offers various filtering options.
JSON Array of Query Params
markets
array of strings
Array of markets.
rateFrom
float
Minimal rate value.
rateTo
float
Maximal rate value.
fromTime
date-time
Unix timestamp to start fetching operations from
toTime
date-time
Unix timestamp to end fetching operations
userAction
string
User role on finished transaction: buy / sell.
nextPageCursor
string
Pointer for starting page. Value of initial pointer is: start
All parameters must be sent by query in JSON format.
Use nextPageCursor parameter to go through pages. If requested parameter will be the same as received, it means that you have reached the last page.
Response details
Key | Type | Description |
---|---|---|
totalRows | integer | Total records number. |
items | array | |
* id | UUID | Transaction UUID. |
* market | string | Market symbol for transaction. |
* time | Unix Timestamp | Time of performed transaction. |
* amount | decimal | Amount of cryptocurrency. |
* rate | decimal | Transaction price. |
* initializedBy | string | Which side initiated the transaction: buy / sell. |
* wasTaker | boolean | True if user was taker. |
* userAction | string | User role in transaction: buy / sell. |
* offerId | UUID | Order UUID of performed transaction. |
* commissionValue | decimal | Value of charged commission. |
query | array | Arrays of requested parameters. |
nextPageCursor | string | Pointer to next page. If requested parameter will be the same as received, it means that you have reached the last page. |