Event-driven by default
Subscribe to events like charge.settled, payout.paid and refund.completed. Each delivery is signed with your endpoint secret; verify it before acting. Failed deliveries retry with exponential backoff and can be replayed from the dashboard.
const ok = orbyt.webhooks.verify(body, sig, secret); if (ok) handle(event);