* for all. GET /v1/webhooks always returns the live catalog; treat this page as the annotated version.
Event catalog
The typical happy path for a sell:
order.matched → settlement.settled → payout.sent.
Delivery contract
Every delivery is a POST with the signed-headers contract from the Webhooks guide:X-ScripX-Signature (sha256=<hmac> over the exact body), X-ScripX-Event, X-ScripX-Delivery.
- Deliveries can repeat; dedupe on
X-ScripX-Delivery. - Order between different events is not guaranteed under retry; re-read the resource for authoritative state.
- Transient failures retry with backoff; permanent 4xx and exhausted retries dead-letter, and dead-letters are listable and replayable.
Related
- Webhooks guide, signature verification code.
- Register a webhook