Rate limit exceeded
429 · rate_limited
Why you got this
More than 300 requests in five minutes on this API key. The limit is per key.
What to do
Wait the number of seconds in the Retry-After header, then retry. That header carries the whole window, so it can be longer than the time actually left. If you are syncing in bulk, batch your writes rather than looping one contact at a time.
How it arrives
Every failure on the API is an RFC 7807 problem document, sent asapplication/problem+json. Branch on type — or on its last segment, which is the code above — rather than ontitle or detail, which are prose and may be reworded.
{
"type": "https://emailfig.com/docs/errors/rate_limited",
"title": "Rate limit exceeded",
"status": 429
}Every code
account_closing— Account is closingconfirmation_unavailable— Confirmation email cannot be sentcontact_cleaned— Address is marked cleanedinvalid_api_key— Invalid or missing API keymalformed_request— Malformed requestnot_found— Not foundrate_limited— Rate limit exceededserver_error— Something went wrong on our endsuppressed_cannot_resubscribe— Address cannot be resubscribedvalidation_failed— Validation failed