Esc to close · ⌘K / Ctrl-K opens search anywhere
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.
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:
| Field | Meaning |
|---|---|
model | Catalog model id |
br_input / br_output | BharatRouter ₹/Mtok in / out |
or_input / or_output | OpenRouter ₹/Mtok (FX-converted) |
delta_pct | How much cheaper (−) or dearer (+) BharatRouter is |
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.