Daily Transactions Report
Parameter
Type
Required
Description
Name
Type
Example
Description
const axios = require("axios");
const crypto = require("crypto");
const apiKey = "your-api-key";
const apiSecret = "your-api-secret";
const params = {
date: "2026-07-04",
page: "1",
limit: "50",
};
// Sort keys to keep the signing payload consistent
const signingPayload = JSON.stringify(
Object.keys(params)
.sort()
.reduce((acc, key) => {
acc[key] = String(params[key]);
return acc;
}, {})
);
const signature = crypto
.createHmac("sha256", apiSecret)
.update(signingPayload)
.digest("hex");
axios
.get("https://api.tylt.money/v2/prime-ntx/transactions/report", {
params,
headers: {
"X-TLP-APIKEY": apiKey,
"X-TLP-SIGNATURE": signature,
},
})
.then((response) => {
console.log(response.data);
})
.catch((error) => {
console.error(error.response?.data || error.message);
});Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Last updated