This is a different limit from the Industry Engine API, which
allows 200 requests per minute. If you use both APIs, do not reuse the same backoff settings.
Hitting the limit
Requests over the limit are rejected at the gateway, before they reach the data service:retry-after.
Backing off
Theretry-after header gives the number of seconds until your quota resets. Wait that long before
retrying. Do not retry immediately, and do not retry on a fixed short interval — a client that
retries every second while throttled simply stays throttled.
retry-after is absent for any reason, fall back to exponential backoff rather than a fixed
delay.
Staying under the limit
Most jobs that hit the limit are paginating a large result set one small page at a time. Two things help more than backoff does:- Ask for larger pages.
Limitaccepts up to 1000 records per request. Ten requests of 1000 cost ten calls; a thousand requests of 10 cost a thousand. See Pagination. - Turn off work you are not using. Setting
IncludeInsightsandIncludeTotalCounttofalsemakes each request cheaper to serve when you only want the company records.