Skip to main content

Overview

Coming Soon: Webhook support is currently in development and will be available in Q2 2026.
Webhooks will provide real-time notifications for order status changes, eliminating the need for continuous polling and reducing API calls.

Current Alternative: Polling

Until webhooks are available, use efficient polling:
// See Polling Strategies guide for optimal patterns
await pollStatus(ref, {
  maxAttempts: 60,
  interval: 5000,
  exponentialBackoff: true,
});