OpenRouter Upgrades Free Tier Limit to 1,000 Requests Per Day
OpenRouter has raised the daily request limit for free-tier models from 50 to 1,000 for users with at least $10 in lifetime spend. This adjustment allows developers to run more aggressive agentic tests and automation cycles without immediate financial overhead.
Impact: Medium
Why it matters
This provides a massive playground for building and testing agentic systems using high-frequency inference calls without per-request costs.
TL;DR
- 011,000 requests per day available for ':free' tagged models.
- 02Requires $10 minimum lifetime spend on the platform.
- 03Verify remaining credits and limits via the /api/v1/key endpoint.
- 04Prevents rate-limit throttling during heavy development cycles.
Key facts
- Free Tier Limit (Under $10 spent)
- 50 requests/day
- Free Tier Limit (Over $10 spent)
- 1000 requests/day
- Free Model Rate Limit
- 20 requests/minute
Updated Request Limits
Users with less than $10 in lifetime spend are capped at 50 requests per day for models marked as :free. Users who have spent $10 or more receive a significant upgrade to 1,000 requests per day.
Rate Control
Regardless of account status, free model variants are restricted to 20 requests per minute. To monitor current usage, users can query the API via GET https://openrouter.ai/api/v1/key. The response includes usage, usage_daily, and limit_remaining, which helps in managing automated agentic workflows.
Try it in 2 minutes
const keyInfo = await openRouter.apiKeys.getCurrent();typescript
What to do today
- Check your current lifetime spend on your OpenRouter dashboard.
- Update your agentic workflow config to use ':free' model variants.
- Implement a check for 402/429 status codes in your agent loops.