Greenhouse · Rate Limits

Greenhouse Rate Limits

Greenhouse Harvest API rate limits use a rolling 10-second window. The actual per-window cap is communicated dynamically via the X-RateLimit-Limit response header (it varies by approved partner / customer-built integration). When exceeded, the API returns HTTP 429 with X-RateLimit-Reset (Unix timestamp) and Retry-After (seconds). Other Greenhouse APIs (Job Board, Candidate Ingestion, Onboarding, Webhooks) have their own documented limits with the same 429 + Retry-After signaling.

4 Limits Throttle: 429
Rate LimitingATSRecruitingHR

Limits

Harvest API — rolling 10-second window api-key
requests_per_period
value of X-RateLimit-Limit header (per 10 seconds)
Limit value is set per approved partner / customer integration and exposed in the X-RateLimit-Limit header. Default ranges around tens of requests per 10 seconds.
Job Board API api-key
varies
see developer docs
Job Board API has its own published limit; same 429 + Retry-After contract.
Candidate Ingestion API api-key
varies
see developer docs
Onboarding API api-key
varies
see developer docs

Policies

Backoff Strategy
When a 429 is received, sleep for the seconds value in Retry-After (or until X-RateLimit-Reset Unix timestamp) before retrying. Apply jitter on additional retries.
Header-driven throttling
Inspect X-RateLimit-Remaining on every successful response to throttle preemptively before the next 429.
Approved-partner allowance
Higher rate-limit allowances are granted to approved Greenhouse partners and customer-built integrations.

Sources