Roadmap
What we're planning to add to the Integrations API. This is direction, not a dated commitment.
For what has already shipped, and in which version, see the Changelog.
Billing
Programmatic visibility into what each return costs. We'll expose how many credits a submission used — i.e. what it was charged, based on its complexity — so you can reconcile usage and surface cost back to your own users.
Partner key rotation
Rotating a partner key today is a three-step dance you drive yourself: issue a second key, cut traffic over, revoke the old one. We want to make it one operation — issue the replacement and have the previous key stop working automatically at a time you choose, so a rotation can be scheduled rather than babysat.
Webhook delivery controls
More control over deliveries that aren't landing: pausing a webhook whose endpoint has been failing (with a notification, and a re-enable once you're healthy) instead of continuing to send to it, and redelivery so you can replay a failed event from the console after fixing your endpoint rather than reconciling by hand.
Webhook replay protection
We'll bring a timestamp into the signed material, with a documented tolerance window, so you can reject a stale replayed delivery outright. Until then, make your handler idempotent — treat a repeat of an event you've already processed as a no-op.