Webhook Notification

Send webhook events to your webhook URL destination after noticing that crypto currency has been deposited to the address. Your webhook endpoint must return HTTP 200 OK success status response code

POST {{YOUR_WEBHOOK_ENDPOINT}}

Example Request Data

{
    "txId": "000000000000000000000d8c0552f0ba7c2df9c1bce46880506df03658ade8f6",
    "txHash": "0xf63edf3a996039678646208fabd7e3f2bd2324a6",
    "address": "18cBEMRxXHqzWWCxZNtU91F5sbUNKhL5PX",
    "tag": null,
    "symbol": "BTC",
    "amount": "8.17412373",
    "ts": 1640154511,
    "sig": "25dd86aae4290bd6d3d812597de572f36db88f4548dec8500cd46cb816130366" 
}

Payload For Singing Signature

Signature generated with HASH HMAC SHA256 With test123 secret

After signing signature with following data your signature must be 25dd86aae4290bd6d3d812597de572f36db88f4548dec8500cd46cb816130366

{
    "txId": "000000000000000000000d8c0552f0ba7c2df9c1bce46880506df03658ade8f6",
    "txHash": "0xf63edf3a996039678646208fabd7e3f2bd2324a6",
    "address": "18cBEMRxXHqzWWCxZNtU91F5sbUNKhL5PX",
    "tag": null,
    "symbol": "BTC",
    "amount": "8.17412373",
    "ts": 1640154511,
}

Last updated