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.
Monitor your rate limit usage via response headers.
X-RateLimit-Limit
X-RateLimit-Remaining
X-RateLimit-Reset
response = client.with_raw_response.calls.list() print(f"Limit: {response.headers['X-RateLimit-Limit']}") print(f"Remaining: {response.headers['X-RateLimit-Remaining']}")