Webhooks

For every successful deposit, our system sends a Webhook to the URL you provide.

How to Set Up

  • Provide us with the webhook URL (API endpoint).
  • We will configure it on our end.

Note: You can append an external_transaction_id to the URL for internal tracking purposes.
For example:
https://webhook.site/b689a5da-9ad8-411f-b156-25e4f748572d?external_transaction_id=mor-gaslesstest-1

Example Payload:

{
  "block": 22591186,
  "amount": "0.003091665372506017",
  "network": "ETHEREUM",
  "tx_hash": "0x8453c2a5bdc829e8fb9ac96fb814058f5fae35e7b4f46632f51a5736f900db3d",
  "currency": "ETH",
  "mined_at": "2025-05-29 21:49:47",
  "confirmed": true,
  "to_address": "0x9afba7ccaea6307976985665e06f38401c02ffff",
  "from_address": "0xfd96c7ab98481229a86ebd16a73206206afe2d16",
  "confirmations": 6
}

Important Security Notice

Since the webhook endpoint is not authenticated, the data sent should be verified for accuracy.
In order to verify the deposit, use the relevant API endpoint Show Deposit, located under the Deposits section.
Only after validating the data through this API should the deposit be considered confirmed.