# Rate Limits

Fastino enforces both monthly request quotas and a Requests Per Second (RPS) limit across all plans.

### **Request Limits by Plan**

| Plan  | Monthly Quota      | RPS Limit |
| ----- | ------------------ | --------- |
| Build | 10,000 requests    | 10 RPS    |
| Pro   | 100,000 requests   | 10 RPS    |
| Team  | 3,000,000 requests | 10 RPS    |

### Batch Requests

For Pro and Team plans, the ability to send batch requests is crucial. Since all plans are capped at 10 RPS, batching allows users to process larger volumes of data without violating RPS limits. Instead of sending 1,000 individual requests per second (which would be throttled), a user can group multiple inputs into a single request payload, dramatically improving throughput. Note that each sample in a batch API request counts as a single model request and counts against your total monthly quota.
