v1 request keeps behaving like v1.
What ships without a new version
These are additive. Clients must tolerate them, so parse defensively and ignore what you do not recognise.- A new field on an existing response.
- A new endpoint.
- A new optional request parameter.
- A new value in an enum, including a new
error.codeor webhooktype. - A new webhook event type.
What requires a new version
- Removing or renaming a field.
- Changing a field’s type or its meaning.
- Removing an endpoint, or changing its path.
- Making an optional parameter required.
- Changing the shape of the error envelope.
Deprecation
When something is going away, it is announced in the API changelog first, then carries a deprecation header for the remainder of its life.Sunset date is published. Security fixes continue for the whole window; new features do not land there.
Rate limits
Limits are per key, per environment.
Exceeding a limit returns
429 with error.code of rate_limited and a Retry-After header. Back off exponentially rather than retrying on a fixed timer, and read Retry-After when it is present.
Webhook deliveries do not count against your request limit.
