Get Custom Conversion Rate History
Name
Type
Example
Description
import axios from "axios";
import crypto from "crypto";
const apiKey = "your-api-key";
const apiSecret = "your-api-secret";
const data = {
fromCurrencySymbol: "INR", // optional
toCurrencySymbol: "USDT", // optional
transactionType: "payin" // optional. Accepted values: "payin" , "payout"
};
/*
If you pass both, it gives 10 most recent rates with fromCurrencySymbol and toCurrencySymbol
If you pass one, it gives 10 most recent rates with that fromCurrencySymbol or toCurrencySymbol, whichever one is passed
If you pass none, it gives 10 most recent rates irrespective of currencySymbol
If you pass either the fromCurrencySymbol or the toCurrencySymbol, remember -
fromCurrencySymbol can only be of currenctType 'fiat'
toCurrencySymbol can only be of currenctType 'crypto'
currencyType of a currency can be checked here -
https://docs.tylt.money/tylt-cpg-crypto-payment-gateway/api-reference/supporting-apis/supported-base-currency-list
For your reference -
fromCurrencySymbol can be 'INR' and other fiat currencies
toCurrencySymbol can be 'USDT' and other crypto currencies
*/
const queryString = new URLSearchParams(data).toString();
const signaturePayload = JSON.stringify(data);
const signature = crypto
.createHmac("sha256", apiSecret)
.update(signaturePayload)
.digest("hex");
const url = `https://api.tylt.money/transactions/merchant/getRateHistory?${queryString}`;
const config = {
method: "get",
url: url,
headers: {
"X-TLP-APIKEY": apiKey,
"X-TLP-SIGNATURE": signature,
},
};
axios
.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.error(error);
});
Last updated