Documentation

Pricing & Billing

How usage is metered and billed from your prepaid ₹ wallet.

Prepaid wallet

nabh.cloud is prepaid. You add credits in Indian Rupees (₹) to your wallet, and each request deducts a usage charge. New accounts get ₹50 in free credits on signup. When your balance reaches zero, requests are declined with INSUFFICIENT_BALANCE rather than billed — you can never overspend.

How charges are calculated

Text and embedding usage is billed per 1,000 tokens, split into input and output rates. The formula is:

cost = (input_tokens  / 1000 × input_rate)
     + (output_tokens / 1000 × output_rate)

# Example — mistral-7b-instruct (₹0.80 in / ₹2.40 out per 1K)
# 1,000 input + 300 output tokens
cost = (1000/1000 × 0.80) + (300/1000 × 2.40)
     = 0.80 + 0.72
     = ₹1.52

Image models are billed per image and speech models per minute of audio. See the full model catalogue for every rate.

Cost visibility

Every response tells you exactly what it cost. The JSON body includes cost_inr and balance_inr, and the same values are returned as headers:

// JSON body includes:
{
  "choices": [ /* ... */ ],
  "usage": { "prompt_tokens": 1000, "completion_tokens": 300 },
  "request_id": "req_8f2c...",
  "cost_inr": 1.52,
  "balance_inr": 48.48
}

// And response headers:
X-Request-ID: req_8f2c...
X-Cost-INR: 1.52
X-Balance-INR: 48.48

For streaming requests, X-Balance-INR reflects your balance at the start of the request; the exact cost is settled and recorded as soon as the stream completes. Full history is available in your dashboard’s Analytics.

Plans

FeatureFreeDeveloperPro
Monthly fee₹999
Free credits₹50 on signup
ModelsFree modelsAll modelsAll + priority
Rate limit5 / min60 / min300 / min
Daily requests50010,000Unlimited
API keys1550
Analytics history7 days30 days365 days

Recharging

Add credits any time from the dashboard. Payments are processed by Razorpay and support UPI, RuPay, Visa/Mastercard, and net banking. Usage charges are exclusive of applicable taxes (including GST). All purchases are final — see our Refund Policy.