Skip to main content
Webhooks allow you to receive real-time notifications for events that occur on wallets in your project.

Event Type

Each notifications flow consists of a parent method with sub-methods representing the lifecycle, status, or progress of an event.

Event Schema


Event Examples

Best Practices

  1. Idempotent Processing: Ensure your webhook handlers are idempotent to avoid duplicate processing.
  2. Final Events Only: Update balances only on final events, Refer to the full list of supported events to identify valid final event types.
  3. Acknowledgment: Always respond with a 2xx HTTP status code within 1 minutes to acknowledge receipt.
  4. Security: Verify webhook payload signatures to ensure authenticity.