Get Supported Crypto Currencies List
Name
Type
Example
Description
const axios = require('axios');
const crypto = require('crypto');
// Replace with your API Key and Secret
const apiKey = 'your-api-key';
const apiSecret = 'your-api-secret';
// Create HMAC SHA-256 signature (no params for this request)
const signature = crypto
.createHmac('sha256', apiSecret)
.update('{}') // No parameters to sign
.digest('hex');
// Define headers
const headers = {
"X-TLP-APIKEY": apiKey,
"X-TLP-SIGNATURE": signature
};
// Send the GET request
axios.get("https://api.tylt.money/transactions/merchant/getSupportedCryptoCurrenciesList", { headers })
.then(response => console.log(response.data))
.catch(error => console.error(error));