How usage & limits work
Every Foodashi plan includes a monthly pool of API calls and a per-minute rate limit. This page explains exactly how calls are counted, what happens at each limit, and how extra usage (overage) is billed — so there are never any surprises.
How calls are counted
Your plan's monthly allowance is measured in API calls. Every request deducts a number of calls from your monthly pool based on how much work it does:
The exact cost of every endpoint is shown in the Documentation and inside the Test Kitchen before you send a request — you always know what a call will cost.
Monthly limits by plan
Your monthly pool resets at the start of each billing cycle. Unused calls don't roll over.
| Plan | Monthly calls | Rate limit | API keys | Extra usage |
|---|---|---|---|---|
| Hobby Free | 10,000 | 30 / min | 1 | Upgrade to unlock |
| Indie | 150,000 | 600 / min | Multiple | $0.50 / 1,000 calls |
| Pro | 1,000,000 | 3,000 / min | Multiple | $0.30 / 1,000 calls |
| Enterprise | 10,000,000+ | 10,000 / min | Custom | Custom |
Need different numbers? See full plan comparison →
Rate limits (per minute)
Alongside your monthly pool, each plan has a requests-per-minute (RPM) ceiling to keep the API fast and fair for everyone. The two limits are independent: you can hit the per-minute limit even with plenty of monthly calls left (and vice-versa).
The API returns 429 Too Many Requests with a
Retry-After header (seconds to wait). The window is a rolling 60 seconds.
Also 429, with the message "Monthly Quota
Exceeded", until your cycle resets or extra usage kicks in (section 5).
Best practice: respect Retry-After with exponential backoff, and spread
bursts of requests rather than firing them all at once.
Endpoint call costs
Anything not listed below costs 1 call. These are the endpoints that cost more:
| Endpoint | What it does | Cost |
|---|---|---|
/api/meal-plan/generate |
Full AI weekly meal plan | 75 |
/api/meal-plan/customize |
AI swap / regenerate meals | 40 |
/api/analyze/url |
Fetch + AI extraction + nutrition | 35 |
/api/analyze/text |
AI recipe text extraction + nutrition | 30 |
/api/shopping-list/optimize |
AI shopping-list optimization | 30 |
/api/recognize/ingredients |
Image → ingredient detection | 25 |
/api/recognize/image |
Image → dish identification | 20 |
/api/pairing/beverages |
AI sommelier beverage pairings | 15 |
/api/tips |
AI cooking / prepping tips | 8 |
/api/search |
Semantic (vector) recipe search | 5 |
/api/ingredients/semantic-search |
Semantic ingredient search | 5 |
/api/ingredients/batch |
Up to 50 ingredient lookups | 5 |
/api/bulk-lookup, /api/recipes/by-ingredients,
/api/ingredients/compare, /api/shopping-list/from-* |
Heavy multi-row database work | 2 |
| Everything else | Search, browse, details, nutrition, allergens, lookups… | 1 |
Extra usage (overage)
Run out of monthly calls but need to keep going? Indie and Pro plans can enable overage so your API keeps working instead of returning errors.
- • Indie: $0.50 per 1,000 extra calls
- • Pro: $0.30 per 1,000 extra calls
- • Charged in pre-paid top-ups (default $10) as you go
- • Overage is off by default — you opt in.
- • You set a monthly overage cap; once hit, the API returns
429instead of charging more. - • A leaked key can never run up an unbounded bill.
Hobby (free) plans don't have overage — when the 10,000 monthly calls are used
up,
requests return 429 until the cycle resets, or you upgrade to Indie/Pro.
Reading your usage
Every successful API response includes live usage headers, so you can track your limits programmatically without a separate call:
# Returned on every response X-RateLimit-Limit: 600 # your per-minute ceiling X-RateLimit-Remaining: 587 # calls left this minute X-RateLimit-Reset: 42 # seconds until the minute resets X-RateLimit-Window: 60s X-Monthly-Limit: 150000 # your monthly pool X-Monthly-Remaining: 148213 # calls left this cycle X-Overage-Active: true # only present when running on overage
You can also see live usage, your current plan, and remaining calls any time in your Console dashboard.
Test Kitchen trial
The Test Kitchen lets you try paid (Indie/Pro) endpoints before upgrading, using a small free trial budget of 150 units per month. Each call spends from that budget at the same cost shown in section 4 (e.g. one meal-plan generation = 75 of your 150 units). It's there to let you evaluate the premium features — for production traffic, use your plan's monthly pool.
FAQ
Check the full API reference, or reach out and we'll help you size the right plan.