Weather Ruse
Guides

Credits

How credits are consumed and how to manage your balance.

How credits work

Credits are the unit of billing on Weather Ruse. They reflect the actual data volume of each request.

credits = variables × locations

Examples

RequestCredits
1 variable, 1 location1 credit
5 variables, 1 location5 credits
1 variable, 100 locations (batch)100 credits
5 variables, 100 locations500 credits

Why credits instead of API calls?

A request for temperature at 1 location costs the same as a request for 20 variables at 100 locations if you used a flat per-call model — but the data volume is 2,000× larger. Credits price the actual work done, keeping things fair for both lightweight and heavy users.

Plan credits

Monthly credits reset on the 1st of each calendar month.

PlanMonthly credits
Free100,000
Starter1,000,000
Pro10,000,000
Enterprise100,000,000+

Credit packs

One-time credit top-ups that never expire:

PackCreditsPrice
Starter pack500,000$9
Growth pack2,000,000$29
Scale pack10,000,000$99

Buy packs from the Billing page.

Checking your balance

# From the API
curl -H "Authorization: Bearer $WR_KEY" \
  https://api.weather-ruse.com/v1/account/balance

Or view in real-time on the console.

Insufficient credits

When your balance reaches 0, the API returns:

{
  "error": "insufficient_credits",
  "message": "Your account has no available credits.",
  "status": 402
}

Monthly credits and credit packs are combined into a single pool. Pack credits are consumed first.

On this page