POST /apiv2/usdt/analyze
Calculate USDT transfer cost with detailed analysis (private endpoint).
Endpoint URL
POST https://netts.io/apiv2/usdt/analyze
Request Headers
Header | Required | Description |
---|---|---|
Content-Type | Yes | application/json |
X-API-KEY | Yes | Your API key |
X-Real-IP | Yes | IP address from whitelist |
Request Body
json
{
"sender": "TSender123...",
"receiver": "TReceiver456...",
"amount": "100.00"
}
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
sender | string | Yes | TRON address of sender |
receiver | string | Yes | TRON address of receiver |
amount | string | Yes | USDT amount to transfer |
Response
Success Response (200 OK)
json
{
"code": 0,
"msg": "Analysis completed successfully",
"data": {
"transfer_details": {
"sender_address": "TSender123...",
"receiver_address": "TReceiver456...",
"usdt_amount": "100.00",
"cost_breakdown": {
"energy_cost": "4.25",
"bandwidth_cost": "1.00",
"total_cost_trx": "5.25"
},
"recommended_energy": 131000,
"savings_analysis": {
"vs_direct_burn": "22.75",
"vs_staking": "8.30",
"savings_percentage": 81.3
}
}
}
}
Notes
- Provides detailed cost breakdown and savings analysis
- Compares costs with direct TRX burning and staking alternatives
- Includes optimization recommendations