Coin Withdrawal callbacks

Refer to this section to get more information on what callbacks are and how to validate them before acting on it inside your system.

Event

Description

created

A CoinWithdrawal transaction has been created

status_changed

The CoinWithdrawal transaction has changed its status

Refer to this section to get more information on CoinWithdrawal transaction statuses.

{
    "data": {
        "id": "08112345-6093-49dc-a8d4-abc58bc12345",
        "fee": "0.0",
        "risk": null,
        "txid": null,
        "status": "pending",
        "address": "TUysHNH5uG3fEziSktp2T3fia46km12345",
        "network": "tron",
        "exchange": {
            "fee": "0.18",
            "pair": "USDTUSD",
            "rate": "1.0008",
            "fee_currency": "USD"
        },
        "custom_id": "1234567",
        "created_at": "2025-08-01T11:46:36+00:00",
        "customer_id": null,
        "description": null,
        "network_fee": "3.000597",
        "fee_currency": "USD",
        "charged_amount": "18.0",
        "received_amount": "14.805158",
        "charged_currency": "USD",
        "network_fee_level": "average",
        "received_currency": "USDT"
    },
    "type": "CoinWithdrawal",
    "event": "created"
}

Last updated