AIB Bullion API integration services (Gold & Silver MCX OpenData)

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.

From $300 · Pay-per-call available
OpenData · OpenFinance · Protocol analysis · MCX / IBJA feeds

Pipe AIB Bullion live rates, market calls and wholesaler data into your stack

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.

Live rate feed — Spot gold, silver, platinum with city-wise variants and 24K/22K/18K conversions, refreshed every few seconds for showroom price boards and trading screens.
Market call API — Structured buy/sell/hold signals from the AIB analyst desk with target, stop-loss and timestamp fields, ready to wire into Telegram bots or risk dashboards.
Jewellery & wholesaler directory — Designs, contact details and bulk-order endpoints for the verified wholesaler network exposed inside the app.
MCX chart & historical data — OHLC candles, intraday ticks and end-of-day fixes for back-testing and technical analysis pipelines.

Feature modules we typically ship

1. Live spot rate ingestion

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.

2. City-wise rate normaliser

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.

3. Market call & alert webhook

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.

4. MCX chart & historical OHLC export

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.

5. Wholesaler & jewellery design directory

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.

6. Online booking & order sync

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 available for integration

Data typeSource (in-app screen)GranularityTypical downstream use
Live spot rates (gold, silver, platinum)Home dashboard / Gold PulsePer-second tick, per-metalTrading screens, ERP price refresh, reconciliation vs IBJA/MCX
City-wise retail ratesCity selector (8+ metros)Per-city, per-purity (24K/22K/18K)Showroom price boards, regional pricing analytics
MCX charts & OHLC historyTechnical analysis tabTick / 1m / 5m / 1d candlesBack-testing, quant models, compliance archives
Expert market callsCalls & insights feedPer-call (entry, target, stop-loss, side)Risk dashboards, trader Telegram bots, P&L attribution
Movement alertsPush notificationsThreshold/event-basedAlgo triggers, customer-facing SMS/WhatsApp fan-out
Jewellery designs catalogueDesigns galleryPer-SKU images, weight, vendorB2B marketplace listings, design-trend analytics
Wholesaler directoryVerified wholesalersPer-vendor profile + contactProcurement portals, lead-routing CRMs
Booking / order eventsBuy gold & silver flowPer-order status timelineBilling sync, settlement reporting, audit logs

Typical integration scenarios

Scenario A — Jewellery ERP price refresh

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.

Scenario B — Trading desk call distribution

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.

Scenario C — Quant back-testing pipeline

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.

Scenario D — Wholesaler procurement portal

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.

Scenario E — Compliance and analyst archive

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.

Technical implementation

Live spot rate fetch

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"
}

Market call webhook payload

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"
}

Historical OHLC export

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" }

Auth, retries and error handling

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.

Compliance & privacy

Bullion data in India sits at the intersection of several frameworks. We design every integration against:

  • SEBI Cybersecurity and Cyber Resilience Framework (CSCRF), August 2024 — encryption at rest and in transit, third-party vendor controls and mandatory audits.
  • SEBI Master Circular on Electronic Gold Receipts (June 2024) — vault-manager and grievance handling expectations when AIB booking flows touch EGR-backed gold.
  • India Bullion & Jewellers Association self-regulatory body — IBJA reference rates and code-of-conduct alignment for analyst calls.
  • Digital Personal Data Protection Act (DPDP), 2023 — consent, purpose limitation and data-principal rights for any user-identifying field.
  • SEBI Research Analyst Regulations — immutable archive of published calls and disclosures.

Data flow / architecture

A typical AIB integration pipeline runs as a four-node flow:

  • Client App / Capture — authorised mobile or server client mirrors the AIB endpoints and emits raw events.
  • Ingestion / API gateway — normalises payloads, applies rate limits and signs outbound webhooks.
  • Storage — hot store (Redis / Postgres) for live rates, cold store (S3 / Parquet) for OHLC and call archives.
  • Analytics & API output — REST/JSON, websocket fan-out and BI connectors for downstream ERPs and dashboards.

Market positioning & user profile

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.

Screenshots

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.

AIB Bullion screenshot 1 AIB Bullion screenshot 2 AIB Bullion screenshot 3 AIB Bullion screenshot 4 AIB Bullion screenshot 5 AIB Bullion screenshot 6 AIB Bullion screenshot 7 AIB Bullion screenshot 8 AIB Bullion screenshot 9 AIB Bullion screenshot 10

Similar apps & integration landscape

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.

  • India Bullions (bullions.co.in) — A web-first live rate platform with historical India gold and silver prices and live charts; users who track AIB rates often cross-check IBJA-style benchmarks here.
  • eBullion — Real-time monitoring of digital gold holdings with Brinks/MMTC-PAMP vault custody; integrators frequently need a unified portfolio view across AIB market data and eBullion holdings.
  • MMTC-PAMP : 24K Gold & Silver — India's leading 999.9+ digital gold platform; back-office systems often combine AIB live spot data with MMTC-PAMP buyback prices for net-asset-value reports.
  • Goldmeter — Sources rates directly from IBJA and MCX plus regional bullion associations; used as an additional reference feed alongside AIB for showroom price boards.
  • India Daily Gold Silver Price (org.chittu.gold) — Tracks city-level gold prices and MCX bullion futures; commonly aggregated with AIB for cross-source price validation.
  • Angel One Gold Rates — Broker-side live gold pricing tied to MCX trading; frequently paired with AIB calls when wiring research to an execution venue.
  • IBJA Rates — The official IBJA opening/closing fixes; the canonical cross-reference for any AIB-driven ERP price refresh.
  • SafeGold — A digital-gold buying and saving platform; integrators use AIB market context to enrich SafeGold transaction exports for end customers.
  • Paytm Gold — Wallet-style digital gold integrated with the Paytm super-app; combined views of AIB rates and Paytm Gold balances power consumer-side dashboards.
  • PhonePe Gold — In-app digital gold backed by MMTC-PAMP/SafeGold; B2B partners often want one unified API across AIB, PhonePe Gold and Paytm Gold for omnichannel reporting.

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.

What we deliver

Deliverables checklist

  • API specification (OpenAPI / Swagger) for the AIB Bullion surface we mirror
  • Protocol and auth flow report (token refresh, signature scheme, retry behaviour)
  • Runnable source for spot rates, historical OHLC and call webhooks (Python / Node.js)
  • Automated contract tests, sample payloads and Postman collection
  • Compliance notes covering SEBI CSCRF, DPDP and IBJA reference-rate handling
  • Optional hosted endpoints with pay-per-call billing and SLA

About us

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.

  • Bullion, payments, digital banking and cross-border clearing
  • Enterprise API gateways and security reviews
  • Custom Python / Node.js / Go SDKs and test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance
  • Source code delivery from $300 — pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted endpoint with no upfront cost

Contact

For quotes or to submit your target app and requirements, open our contact page:

Contact page

Engagement workflow

  1. Scope confirmation: which AIB modules (rates, calls, OHLC, wholesalers, booking) you actually need.
  2. Protocol analysis and API design (2–5 business days, complexity-dependent).
  3. Build, internal validation and contract tests (3–8 business days).
  4. Documentation, samples and acceptance review (1–2 business days).
  5. Typical first delivery: 5–15 business days; multi-source reconciliation may extend timelines.

FAQ

What do you need from me?

The target app name (already AIB Bullion), the modules you care about (e.g. spot rates only, or rates + calls + booking), and any existing backend credentials or sandbox access you already have.

How long does delivery take?

Usually 5–12 business days for the first API drop and docs; deep historical OHLC archives or multi-app unifications may take longer.

How do you handle compliance?

Authorised or documented public surfaces only, with consent records, signed audit logs and DPDP-aligned data-minimisation guidance; NDAs available on request.
📱 Original app overview (AIB Bullion : Gold Rate 24x7 — appendix)

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.

Why users pick AIB

  • Live 24×7 gold & silver rates — refreshed every few seconds.
  • City-wise prices across India — Delhi, Mumbai, Jaipur, Hyderabad, Indore, Surat, Kochi, Ahmedabad and more.
  • Expert market calls and insights — buy/sell/hold suggestions from bullion analysts.
  • Technical charts and analysis — MCX charts, candlestick views and historical data.
  • Jewellery designs and wholesale network — view designs and connect with verified wholesalers.
  • Economic and global market updates — see how global events impact bullion prices in India.

What you can do inside AIB

  • Check live bullion rates for gold, silver and platinum.
  • Compare city-wise prices to find the best buying or selling opportunities.
  • Follow market trends with detailed charts and technical analysis.
  • Get instant alerts on major market movements.
  • Explore jewellery designs and place bulk or custom orders with wholesalers.
  • Stay updated with international bullion news that affects Indian prices.

Who it is for

  • Jewellers & retailers — track prices to manage inventory and customer pricing.
  • Bullion traders & investors — spot profitable entry and exit points.
  • Wholesalers & dealers — promote designs and connect with buyers.
  • Consumers — compare local gold and silver rates before buying.

How AIB helps users trade smarter

  • Speed — real-time prices without delays.
  • Accuracy — trusted market sources for precise rate updates.
  • Transparency — no hidden spreads, see true market prices.
  • Convenience — all bullion data, charts and market calls in one app.

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.