GA
Global API
DocsGet Started

Error Codes

Error Codes

Common Errors

CodeMeaningSolution
401Invalid API keyCheck your key is correct
403Rate limit exceededWait or upgrade plan
429Too many requestsImplement backoff retry
500Server errorRetry in a few seconds
503Service unavailableCheck status page

Retry Strategy

import time

def retry_with_backoff(fn, max_retries=3):

for i in range(max_retries):

try:

return fn()

except Exception as e:

if i == max_retries - 1:

raise e

wait = 2 ** i

time.sleep(wait)

Get Started Free →