Exchange History
Request Body
Name
Type
Description
{
"result": integer, // The result code indicates the success or failure of the request.
"message": string, // A message providing additional information about the result.
"data": [
{
"trackId": string, // The uniqe id for the exchange.
"fromCurrency": string, // The currency code of the cryptocurrency you want to convert from
"toCurrency": string, // The currency code of the cryptocurrency you want to convert to
"fromAmount": string, // Amount you want to exchange
"toAmount": string, // The amount you'll receive in your desired cryptocurrency.
"rate": string, // The real-time exchange rate representing the number of units of `fromCurrency` equivalent to `toCurrency`.
"type": string, // The type of the exchange (e.g., \"autoConvert\" or \"manualSwap\" or \"swapByApi\").
"date": string // The timestamp of the exchange transaction in Unix time format.
}
],
"meta": {
"size": integer, // The number of exchange transactions returned in the current page.
"page": integer, // The current page number of the result set.
"pages": integer, // The total number of pages available based on the number of records and page size.
"total": integer // The total number of exchange transactions available for the specified criteria.
}
}Example codes
Last updated