Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Request limits and retry guidance.
429 Too Many Requests
import time, requests def with_retry(fn, retries=4): for i in range(retries): r = fn() if r.status_code != 429: return r time.sleep(2 ** i) # 1s, 2s, 4s, 8s return r