Rate Limit
ConceptsRate limit is a cap on how many requests or operations you can make in a given time period (e.g., requests per minute or documents per hour). DocLD and underlying services enforce rate limits to ensure fair usage and system stability. Exceeding limits typically returns HTTP 429 (Too Many Requests).
Impact
- Throughput — Rate limits cap maximum throughput for API calls
- Batch processing — Large batches may be throttled; workflows can pace requests
- Retries — Requests that fail due to rate limits can be retried with backoff
Rate limits and quotas vary by plan. Check your plan limits in the dashboard.
Related Concepts
Rate limits constrain API usage and throughput. Batch processing and workflows can help stay within limits. Idempotency makes retries safe when limits cause transient failures.