Introduction
Webhooks allow your application to be notified in real time when events occur. This guide shows how to receive and verify Deposit, Convert, and Transfer webhook events.Receiving an Event
You need to expose an endpoint in your server to receive webhook events. Below are examples in TypeScript, Go, and Python.Public Keys
Staging
Staging
Production
Production
Supported Events
Verifying Event Source
Each webhook includes asignature
that you must verify using your configured public key.
Below is a verification handler pattern in TypeScript, Go, and Python.