Processing deposit callbacks
Deposit callbacks are sent whenever funds are received at an address created via the /addresses/take endpoint. Use theforeign_id field to identify which customer made the deposit. This value is the same as the foreign_id you provided when calling /addresses/take.
Handle callback statuses as follows:
"status": "confirmed"— the deposit has been fully confirmed, and it is safe to perform business actions such as crediting the customer’s balance in your system."status": "not_confirmed"— the deposit has been detected but is still being processed. In this case, we recommend creating the transaction on your side with apendingorprocessingstatus and informing the customer that the deposit is still being confirmed.
currency_sent.amount— the amount sent by the customer in the deposit currencycurrency_received.amount— the amount received after processing or conversioncurrency_received.amount_minus_fee— the amount credited to your merchant balance after fees
Deposit callback payload examples
- Confirmed
- Confirmed (with conversion)
- Cross-currency deposit
- Processing
- Below minimum amount
- Cancelled (double spend)
Sent when a deposit has been successfully confirmed and can be treated as final on your side. At this stage, it is safe to perform business actions such as crediting the customer’s balance.
Callbacks for instant confirmations
For deposits, our system supports instant confirmations. This means some deposits can be confirmed in our system before they are confirmed on the blockchain. In these cases, the system immediately sends a callback with theconfirmed status. By confirming the transaction early, we assume the risk associated with accepting the funds before on-chain confirmation. No action is required on your side.
In other cases, you will first receive a callback with the not_confirmed status. This means we have detected the transaction in the mempool, but we are not yet ready to guarantee that it will be completed. In this case, you can create the transaction on your side and assign it the pending status. Then wait for the second callback, in which the status parameter will change to confirmed.
Additional deposit callbacks
You can choose whether to receive callbacks for the cases below. By default, these callbacks are enabled:- deposits below the minimum allowed amount
- deposits received in a currency different from the currency assigned to the crypto address
- In the merchant dashboard, go to Settings and open the Callbacks tab.
- Under Additional callbacks, click Manage.

- Enable or disable one or both of the following options, then click Save changes.