Last Updated: 12/10/2025
Advanced Features
Explore advanced capabilities.
Webhooks
Configure webhooks to receive real-time updates:
webhooks:
- url: https://example.com/webhook
events:
- user.created
- order.completedRate Limiting
| Tier | Requests/hour |
|---|---|
| Free | 1,000 |
| Pro | 10,000 |
| Enterprise | Unlimited |
Caching
Enable caching for better performance:
interface CacheConfig {
ttl: number;
maxSize: number;
}
const cache: CacheConfig = {
ttl: 3600,
maxSize: 1000
};