Skip to main content
Rate Limits

API Rate Limits

Understand rate limits and optimize your WMS API integration for maximum efficiency.

Rate Limit Tiers

Rate limits vary by subscription tier. Choose the tier that matches your integration volume.

TierRequest LimitWindowBurst Limit
Standard1,000per minute50 req/sec
Professional5,000per minute200 req/sec
Enterprise25,000per minute1,000 req/sec

Rate Limit Headers

Every API response includes headers to help you track your rate limit status.

X-RateLimit-Limit

Maximum requests allowed in the current window

X-RateLimit-Remaining

Requests remaining in the current window

X-RateLimit-Reset

Unix timestamp when the rate limit resets

Handling Rate Limits

When you exceed the rate limit, the API returns a 429 Too Many Requests response.

Best Practices

  • Implement exponential backoff for retries
  • Cache responses when possible
  • Use bulk endpoints instead of individual calls
  • Monitor X-RateLimit-Remaining headers

Next Steps