Transfer Webhook
HTTP Method: POST
.
Endpoint URL: https://your-server/transfer
.
Description: Notifies your server about successful inbound or outbound transfers (e.g., wallet-to-wallet).
Security: Requires the X-HMAC
header.
Request Body (JSON):
{
"transferId": "f1234abc-5678-9012-def3-4567890abcde",
"type": "TRANSFER",
"amount": "50.00",
"asset": {
"short": "USDT",
"name": "Tether",
"logoUrl": "https://cryptologos.cc/logos/tether-usdt-logo.png",
"network": "tron"
},
"fromAddress": "0xFromAddressHere",
"toAddress": "0xToAddressHere",
"status": "COMPLETED",
"timestamp": "2025-05-20T12:45:00Z"
}
Response: HTTP 200 OK with empty body.