Throttling
Introduction
Rate Limiting Algorithms
Sliding Window
throttling:
enabled: true
maxRequests: 1000
window: 3600 # 1 hour sliding windowToken Bucket Algorithm
throttling:
enabled: true
maxRequests: 100 # Bucket capacity
window: 60 # Refill rate: 100 tokens per 60 seconds
burst: 20 # Allow bursts up to 20 requestsRequest Queuing
Basic Queue Configuration
Queue Behavior
Configuration
Property
Description
Default
Example
Common Configurations
API Rate Limiting
Webhook Protection
High-Traffic Configuration
Last updated