Protocol analysis and production-ready APIs for the AIB Bullion (com.allindiabullion) Android and iOS app — used by 4 lakh+ jewellers, traders and wholesalers across India.
AIB Bullion publishes second-by-second spot rates for gold, silver and platinum across Delhi, Mumbai, Jaipur, Hyderabad, Indore, Surat, Kochi and Ahmedabad, plus MCX candlestick history, expert buy/sell/hold calls and a live jewellery wholesaler directory. Our team mirrors that surface as a clean REST/JSON API so it can flow into ERPs, jewellery POS, trading dashboards, accounting systems and analytics warehouses.
A polling and websocket bridge that captures the AIB Bullion spot feed (SPOT GOLD, INT-GOLD, GOLD EFP, SPOT SILVER) and republishes it as JSON with millisecond timestamps. Used to drive in-store price boards, trading screen overlays and reconciliation jobs that compare AIB rates against IBJA and MCX benchmarks.
A normalisation layer that maps the eight city blocks shown inside the app — Delhi, Mumbai, Jaipur, Hyderabad, Indore, Surat, Kochi, Ahmedabad — onto a single tabular schema with purity (24K/22K/18K), making/wastage charges and GST-inclusive variants. This is the format jewellery ERPs such as GehnaERP, Jwelly ERP and WinGold expect on their inbound rate hooks.
A push-style endpoint that forwards AIB analyst calls and major-movement alerts to Slack, Telegram, MS Teams or any internal trading desk. Each event carries call_id, instrument, side, entry, target, stop-loss and analyst tags so it can also feed P&L attribution and compliance archives.
Bulk export endpoint for candlestick and historical-fix data, with paged JSON and on-demand CSV/Excel snapshots. Powers technical-analysis notebooks, back-test rigs and compliance reports that need to re-create what an AIB user saw at a specific moment.
Search and lookup endpoints over the verified wholesaler network and the jewellery design catalogue, returning vendor profile, contact channels, design SKUs and listed weight ranges. Helpful for B2B procurement portals and marketplace integrations.
An order-tracking layer that mirrors the in-app gold/silver booking flow and exposes confirmation, status-change and settlement events to back-office systems, so a wholesaler can drop AIB-driven orders directly into their billing and inventory tooling.
| Data type | Source (in-app screen) | Granularity | Typical downstream use |
|---|---|---|---|
| Live spot rates (gold, silver, platinum) | Home dashboard / Gold Pulse | Per-second tick, per-metal | Trading screens, ERP price refresh, reconciliation vs IBJA/MCX |
| City-wise retail rates | City selector (8+ metros) | Per-city, per-purity (24K/22K/18K) | Showroom price boards, regional pricing analytics |
| MCX charts & OHLC history | Technical analysis tab | Tick / 1m / 5m / 1d candles | Back-testing, quant models, compliance archives |
| Expert market calls | Calls & insights feed | Per-call (entry, target, stop-loss, side) | Risk dashboards, trader Telegram bots, P&L attribution |
| Movement alerts | Push notifications | Threshold/event-based | Algo triggers, customer-facing SMS/WhatsApp fan-out |
| Jewellery designs catalogue | Designs gallery | Per-SKU images, weight, vendor | B2B marketplace listings, design-trend analytics |
| Wholesaler directory | Verified wholesalers | Per-vendor profile + contact | Procurement portals, lead-routing CRMs |
| Booking / order events | Buy gold & silver flow | Per-order status timeline | Billing sync, settlement reporting, audit logs |
A multi-store jeweller in Gujarat needs the same spot price to drive its showroom display, its tag-printing service and its Tally/GST billing. We expose /v1/rates/spot?city=ahmedabad&purity=24K, push every tick into the ERP's webhook, and emit a daily IBJA-vs-AIB delta report so the finance team can spot drift before it shows up in margin reports.
A bullion broker wants to fan AIB analyst calls out to clients on Telegram, WhatsApp and a custom portal. Our adapter consumes the call stream, enriches each event with MCX last-traded-price and posts to the right channel under each user's consent record — an OpenFinance-style flow modelled after PSD2 strong-customer-authentication patterns.
A research team uses the historical OHLC export to back-test a momentum strategy on MCX gold mini contracts. We deliver a parquet snapshot of three years of one-minute candles plus a replay endpoint, so the simulator can recreate exactly what an AIB user saw at any prior timestamp.
A jewellery chain centralises bulk procurement by reading the AIB wholesaler directory and design catalogue into its own marketplace. We provide the listing/search APIs plus an opt-in lead webhook, so vendors only see enquiries from buyers they have agreed to engage with.
An investment advisor regulated under SEBI's Research Analyst regime needs an immutable archive of every public call along with the live rate context at the moment of publication. We pair the calls API with a snapshot service that stores call_id, rate_at_publish, channel and acknowledgement records for audit replay.
GET /api/v1/aib/rates/spot?city=mumbai&purity=24K
Authorization: Bearer <ACCESS_TOKEN>
Accept: application/json
200 OK
{
"city": "mumbai",
"metal": "gold",
"purity": "24K",
"bid": 7421.50,
"ask": 7425.10,
"unit": "INR/g",
"source": "AIB::SPOT_GOLD",
"ts": "2026-04-29T08:14:31.224+05:30"
}
POST https://your-app.example.com/hooks/aib/call
X-AIB-Signature: t=1714367671,v1=4f1b...c2
Content-Type: application/json
{
"call_id": "AIB-2026-04-29-0173",
"instrument": "MCXGOLDM-JUN26",
"side": "BUY",
"entry": 73210,
"target": 73850,
"stop_loss": 72940,
"analyst": "desk-04",
"issued_at": "2026-04-29T10:02:11+05:30"
}
POST /api/v1/aib/history/ohlc
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json
{
"instrument": "MCXSILVER",
"interval": "5m",
"from": "2026-01-01T00:00:00+05:30",
"to": "2026-04-29T00:00:00+05:30",
"format": "parquet"
}
202 Accepted
{ "job_id": "ohlc_8a91", "status_url": "/jobs/ohlc_8a91" }
All endpoints sit behind rotating bearer tokens with HMAC-signed webhooks. Clients get an idempotency key on every write call, exponential-backoff guidance on 429/503, and a structured error envelope (code, message, retry_after, request_id) so failures are debuggable end-to-end. Source code ships in Python and Node.js with a typed SDK and contract tests.
Bullion data in India sits at the intersection of several frameworks. We design every integration against:
A typical AIB integration pipeline runs as a four-node flow:
AIB Bullion is built for the Indian bullion ecosystem rather than retail digital-gold buyers. Its 4,00,000+ user base skews heavily towards jewellers and retailers managing inventory, bullion traders and investors hunting MCX entry/exit points, wholesalers and dealers promoting designs, and consumers who simply want to compare local 24K/22K rates before walking into a showroom. The app is available on Android (com.allindiabullion) and iOS (id1591279956), with active install growth driven by Tier-1 and Tier-2 metros across India. That positioning makes its data uniquely useful for B2B procurement, jewellery ERP vendors and brokers — segments that overlap heavily with our typical client list.
Tap any thumbnail to enlarge. These views show the AIB Bullion features we typically mirror as APIs — live rates, city tiles, MCX charts, market calls and the wholesaler directory.
Teams that work with AIB Bullion data usually also touch one or more of the following Indian gold/silver and digital-bullion apps. Each holds a slightly different slice of the same ecosystem, and unified integrations are common.
If your project already touches any of the apps above, the same protocol-analysis and OpenData approach we use for AIB Bullion can be extended to bring those datasets under one consistent schema.
We are an independent studio focused on fintech and OpenData API integration. Our engineers come from bullion trading desks, payments, mobile reverse engineering and cloud infrastructure, and we ship end-to-end financial APIs under security and compliance constraints.
For quotes or to submit your target app and requirements, open our contact page:
What do you need from me?
How long does delivery take?
How do you handle compliance?
All India Bullion (AIB) tracks live gold and silver prices from top Indian cities, distributes expert bullion market calls, and offers real-time technical analysis in a single Android (com.allindiabullion) and iOS app. Whether you are a trader, jeweller, wholesaler, or bullion enthusiast, AIB delivers fast, transparent rates designed for a precision-trading workflow.
Join the 4,00,000+ users across India who rely on AIB Bullion for accurate rates, expert calls and market insights — and let us help you bring that same data into your own systems.