⚡ New — Kimi K3 is live: bring your own Moonshot key →
Documentation

Prove you are cheaper than OpenRouter

← Cookbook

Pull a live, FX-converted INR price comparison for any model straight from the gateway.

/v1/pricing/compareCostBeginner3 min

Before you migrate a workload, you want the numbers. BharatRouter exposes a public endpoint that compares its INR per-token rates against OpenRouter for the same model — no key required.

You'll use: GET /v1/pricing/compare (public). Rates are FX-converted to INR and cached hourly.

Do it

curl -s https://api.bharatrouter.com/v1/pricing/compare | \
  jq '.[] | select(.model=="gpt-5-mini")'

Each row carries both platforms' INR input/output rates and the delta, so you can rank your real workload by spend:

FieldMeaning
modelCatalog model id
br_input / br_outputBharatRouter ₹/Mtok in / out
or_input / or_outputOpenRouter ₹/Mtok (FX-converted)
delta_pctHow much cheaper (−) or dearer (+) BharatRouter is

How it works

The gateway keeps a cached FX rate (₹/$) and recomputes the comparison hourly, so the figures track currency moves without you doing the maths. Pair it with the cost playbook to actually capture the saving, not just measure it.

More recipes in the Cookbook, or see the fullAPI reference.