What a Credit Pack Is
A credit pack is a one-time purchase of credits, bought self-serve from Credits in your dashboard. It is not a plan and not a subscription: you pay once, the credits land on your account, and they stay there for 12 months from that purchase. Packs are the pay-as-you-go answer to a month that runs long, a backfill, or a seasonal spike — the cases where a permanently bigger plan would be the wrong shape.No subscription needed
Buy with a plan, without one, or on top of a dedicated contract. A pack-only
account calls the same endpoints with the same key.
No integration change
Same key, same endpoints, same prices per call. Nothing in your code knows
which balance paid for a request.
Rates
Rates are progressive, in units of 1,000 credits. A bigger pack lowers the price of the credits above each threshold; it does not reprice the ones below it.What that costs
Because the rates are marginal, a 5,000,000-credit pack costs **1.45 = 1.50 and only the
four million above it get the lower rate. The dashboard shows the exact total
and the effective per-1,000 rate before you confirm, so you never have to
reproduce the arithmetic.
Sizes
- Minimum: 50,000 credits ($75)
- Maximum: 50,000,000 credits in a single pack
- Increments: 50,000 up to 1,000,000, then 250,000
How Packs Are Spent
A request always draws from your plan first, and only reaches your packs once the plan allowance for the period is exhausted. Among packs, the one expiring soonest is drawn down first.1
Plan credits
Your monthly allowance. It is replaced at each renewal, so anything unspent is
lost — which is exactly why it is spent first.
2
Packs, soonest expiry first
Then your oldest-expiring pack, until it is empty, then the next one.
3
402
Only when every balance is empty does a request fail with
402 QUOTA_EXHAUSTED.Expiry
Each pack expires 12 months after its own purchase date. Buying a new pack never extends an older one — two packs bought six months apart have two different expiry dates and are consumed in that order.paygExpiresAt on GET /api/v1/subscription
gives the date of the soonest-expiring pack you still hold (null if you hold
none), which is the date to watch: it is when your balance can drop without you
having called anything.
What a Pack Does Not Change
- Your rate limit. Requests per second is a property of your plan. Buying
credits never raises it, and no pack size unlocks more throughput — see
Rate Limits. If you are hitting
429, credits are not the fix. - Your plan.
creditsLimitkeeps reporting the plan allowance, andcreditsUsedkeeps counting the plan alone, so both stay meaningful after a purchase. - Your subscription’s fate. If you later cancel your plan, its credits stop renewing and your rate limit falls back to the default 5 requests per second. Your pack credits stay, and you can keep spending them until they expire.
Buying a Pack
1
Open the Credits page
Go to fetchin.io/credits and open the credit
pack section.
2
Pick a volume
Choose a preset or enter your own. The total and the effective per-1,000 rate
update as you go.
3
Pay
Checkout is handled by Stripe. Credits are added to your account as soon as
the payment clears — normally within seconds.
4
Verify
The dashboard shows the new balance and the pack’s expiry date, and
GET /api/v1/subscription returns
it as paygCreditsRemaining / paygExpiresAt. In-flight calls start
succeeding again with no redeploy.A past-due subscription does not block a purchase. Packs are prepaid, so you can
buy one to keep working while a card issue is being sorted out.
Checking Your Pack Balance in Code
creditsRemaining is the sum of both balances — the number to gate on. Watch
paygCreditsRemaining if you want to know when your packs are running low, and
paygExpiresAt to be reminded before a pack lapses.
Common Questions
Can I buy without a subscription?
Can I buy without a subscription?
Yes. A pack works on its own — sign up, buy, call the API. Your rate limit is
the default 5 requests per second until you take a plan.
Do packs stack?
Do packs stack?
Yes. You can hold several at once. They are consumed soonest-expiry first, and
each keeps its own 12-month clock.
Does buying a pack change what a request costs?
Does buying a pack change what a request costs?
No. Every endpoint bills the same credits whichever balance pays — see
Quotas for the per-endpoint table.
Are packs refundable?
Are packs refundable?
No. Packs are non-refundable, including the unused portion, and expired
credits are not restored.
Can a pack get me more requests per second?
Can a pack get me more requests per second?
No. Credits and throughput are separate axes. Higher sustained RPS comes from
a plan — contact sales.