Getting Started
Configuration — API Tokens, Webhooks & Security Setup - TronFuel
After creating your account and generating an API key, you can configure the following in the dashboard:
#🔐 API Key
Click the New Token button to generate a fresh API key. This is required for all API requests.
#🌐 Webhook URLs
Use Manage Webhook URLs to set the destination endpoint for status updates on your transactions.
#🔑 Webhook Secret
Your Webhook Secret is used to verify incoming webhook requests.
Each webhook request includes an X-Signature
header containing an HMAC-SHA256 signature of the tron_transaction_id
, using your secret key.
Verify the signature like so (example in Node.js):
1const crypto = require("crypto");
2const signature = crypto.createHmac("sha256", webhookSecret)
3 .update(tron_transaction_id)
4 .digest("hex");
Compare this to the value in the X-Signature
header.