HMAC SHA-256 signature generated using the API Secret Key to secure the request.
When using the API, ensure to include your API Key and generate the signature for the request payload using your API Secret. The tables provided above contain example values for illustration purposes only. Please refer to the code snippets for detailed instructions on how to sign the request and generate the signature properly.
Code Snippet
const crypto = require('crypto');
const axios = require('axios');
// Replace with your API Key and Secret
const apiKey = 'your-api-key';
const apiSecret = 'your-api-secret';
// Function to generate the signature for GET requests
function generateSignature(params) {
const paramString = new URLSearchParams(params).toString();
return crypto.createHmac('sha256', apiSecret).update(paramString).digest('hex');
}
// Parameters (if any)
const params = {};
// Create signature
const signature = generateSignature(params);
// Set up headers
const headers = {
"X-TLP-APIKEY": apiKey,
"X-TLP-SIGNATURE": signature
};
// Send GET request using Axios
axios.get("https://api.tylt.money/transactions/merchant/getSupportedCryptoNetworksList", { headers: headers })
.then(response => {
console.log("Response:", response.data);
})
.catch(error => {
console.error("Error:", error.response ? error.response.data : error.message);
});
import requests
import json
import hmac
import hashlib
# Replace with your API Key and Secret
api_key = 'your-api-key'
api_secret = 'your-api-secret'
# Function to generate the signature for GET requests
def generate_signature(params):
param_string = '&'.join([f"{key}={value}" for key, value in params.items()])
return hmac.new(api_secret.encode(), param_string.encode(), hashlib.sha256).hexdigest()
# Parameters (if any)
params = {}
# Create signature
signature = generate_signature(params)
# Define headers
headers = {
"X-TLP-APIKEY": api_key,
"X-TLP-SIGNATURE": signature
}
# Send GET request
response = requests.get("https://api.tylt.money/transactions/merchant/getSupportedCryptoNetworksList", headers=headers)
# Print the response
if response.status_code == 200:
print("Response:", response.json())
else:
print(f"Failed with status code {response.status_code}: {response.text}")
const crypto = require('crypto');
const fetch = require('node-fetch');
// Replace with your API Key and Secret
const apiKey = 'your-api-key';
const apiSecret = 'your-api-secret';
// Function to generate the signature for GET requests
function generateSignature(params) {
const paramString = new URLSearchParams(params).toString();
return crypto.createHmac('sha256', apiSecret).update(paramString).digest('hex');
}
// Parameters (if any)
const params = {};
// Create signature
const signature = generateSignature(params);
// Set up headers
const headers = {
"X-TLP-APIKEY": apiKey,
"X-TLP-SIGNATURE": signature
};
// Send GET request
fetch(`https://api.tylt.money/transactions/merchant/getSupportedCryptoNetworksList`, { method: 'GET', headers: headers })
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));