Added
API Rate Limiting (200 Requests/Minute)
10 days ago by Colissa Pollard
⚠️ Sign up for our API Mailing list here to receive updates about future API changes.
API Rate Limiting Update
To ensure fast and reliable performance for all customers, the Dash Platform will now enforce an API rate limit of 200 requests per minute per user on February 2nd, 2026.
New Response Headers
All successful API responses include:
- X-RateLimit-Limit – Total number of requests allowed per minute
- X-RateLimit-Remaining – Number of requests still available in the current window
When the rate limit is exceeded, the API returns HTTP 429 – Too Many Requests along with:
- Retry-After – Number of seconds until the request may be retried
- X-RateLimit-Reset – Timestamp indicating when the current rate-limit window resets
Normal access resumes automatically once request volume drops below the threshold.
Required Integration Updates
Please ensure your integration:
- Handles HTTP 429 responses gracefully
- Implements retry logic with exponential or incremental backoff
- Monitors rate-limit headers to avoid unnecessary throttling
These changes protect overall system stability and provide a more consistent experience for all users.
FAQ:
- What is the new rate limit?
- 200 requests per minute per account.
- How do I know my remaining quota?
- Check response headers:
- X-RateLimit-Limit
- X-RateLimit-Remaining
- Check response headers:
- What happens if I exceed the limit?
- You’ll receive HTTP 429 with:
- Retry-After (seconds to wait)
- X-RateLimit-Reset (reset timestamp)
- You’ll receive HTTP 429 with:
- What should my integration do?
- Handle 429 responses
- Wait the Retry-After duration
- Use retry logic with backoff
- Avoid tight polling or rapid bursts
- Does this apply to all endpoints?
- Yes — the limit is per account across all API routes.
- What if I need higher limits?
- Optimize request patterns, then contact our team to discuss your use case.
