Ashby · Rate Limits

Ashby Rate Limits

Ashby applies per-API-key rate limits across its JSON-RPC API. The default is a sliding-window limit applied per access key and per endpoint family; exceeded requests return HTTP 429 with a Retry-After header.

3 Limits Throttle: 429
HRATSRecruitingRate LimitingThrottling

Limits

Per API Key Default token
requests
Sliding-window limit per API key; 429 returned with Retry-After when exceeded.
Listing / Search Endpoints token
requests
List endpoints (candidate.list, application.list) carry tighter limits than item-level reads; paginate aggressively.
Webhook Delivery subscription
events
Outbound webhook deliveries are signed and retried on 5xx; receivers must respond within the platform timeout.

Policies

Backoff Strategy
Exponential backoff with jitter on 429; honor Retry-After.
Pagination
Use cursor-based pagination on .list endpoints rather than scanning all records.
Webhooks-First
Subscribe to events for change notification; reduce list polling.

Sources