Capabilities / Blueprints
Protect your infrastructure from sudden traffic bursts.
9 categories51 pagesUpdated Mar 24, 2026
Browse Documentation
Foundation
Platform
Capabilities
Product
Core Platform
Core Platform
Developers
Operations
Business
Billing and Plans
Billing and Plans
On This Page
No section anchors
# Global Rate Limiting
Rate limits prevent a single user or IP address from monopolizing your compute and bandwidth.
## Pattern
Use a combination of IP-based limits for public routes and API-Key based limits for authenticated paths.
``ts
// Authenticated users get higher budgets
const decision = await client.evaluate({
ip: req.ip,
method: 'GET',
path: '/api/data',
userId: req.user?.id
});
``
Last updated Mar 24, 2026