Skip to content
Using the APIs

Understanding Rate Limits

To ensure reliable service for all users, Copyleaks enforces rate limits. Each rate limit has two components - request count and time period.

Exceeding these limits will result in an HTTP 429 Too Many Requests error response.

Our API has a system-wide default rate limit of 10 requests per second per account. However, certain endpoints have unique, stricter limits to ensure fair usage and optimal performance. Any endpoint not explicitly listed below adheres to the default limit.

ProductEndpointRate Limit
Loginhttps://id.copyleaks.com/v3/account/login/api 12 requests per 15 minutes
Authenticity Scan Exporthttps://api.copyleaks.com/v3/downloads/{SCAN_ID}/export/{EXPORT_ID}10 requests per minute
AI Image Detectorhttps://api.copyleaks.com/v1/ai-image-detector/{SCAN_ID}/check900 requests per 15 minutes

When an application receives a 429 Too Many Requests error, simply ignoring it or immediately retrying the same request will only make the problem worse. Exceeding the maximum calls repeatedly will lead to temporary or permanent blocks.

To ensure your integration is robust and efficient, it’s crucial to avoid common mistakes that can lead to being rate-limited. Understanding the correct workflow will save development time and prevent interruptions in service.

A common issue is calling the login endpoint to get a new token before making every API call. This is inefficient and will quickly lead to being rate-limited due to the endpoint’s strict limit of 12 requests per 15 minutes.

Another frequent mistake is calling the Authenticity Scan Export endpoint multiple times for the same scan.