Authorized protocol analysis, SEBI-aware data pipelines and production-ready APIs for SMC Global Securities’ SMC Ace (Demat, Stocks & IPO).
SMC Ace is the retail trading and investing app published by SMC Global Securities Ltd. (SEBI registration INZ000199438; member of NSE, BSE, MSE, MCX, NCDEX). The app holds demat holdings, intraday and delivery order books, executed trade ledgers, mutual fund SIP records, and IPO subscription history — exactly the structured datasets that downstream wealth dashboards, tax tools, and accounting platforms now want to ingest through OpenFinance pipelines.
India crossed 18 crore demat accounts in 2025 and the SEBI-licensed Account Aggregator framework now lets depositories act as Financial Information Providers (FIPs). SMC Ace sits squarely inside that data plane: every authenticated session exposes holdings, executed trades, fund ledger, mutual fund folios, and IPO allotments. For a wealth-tech, neobank, or compliance vendor, that is high-signal structured data — far richer than scraping price screens.
Our role is to wrap those data flows in a stable, documented API. The customer brings the SMC Ace credentials or a signed authorization; we deliver the pipeline.
Mirrors SMC Ace login (client code, password, TOTP/PIN) and produces a stable session token that downstream services can refresh. Includes ReKYC-state detection so dormant accounts are correctly surfaced.
Endpoint returns ISIN, symbol, exchange, quantity, average price, LTP, day change, and unrealized P&L. Powers a unified portfolio screen across SMC Ace and any other broker.
Pending, executed, and cancelled orders with order_id, exchange, segment (CASH/FNO/CUR/COM), product (CNC/MIS/NRML/MTF), and brokerage breakdown. Used for end-of-day reconciliation against contract notes.
Reads applied IPOs, lot size, bid price, ASBA reference, allotment status, and credited shares. Powers a single dashboard for users tracking many IPOs across SMC and other brokers in 2025.
Returns folio number, scheme code (AMFI), units, NAV, invested value, and SIP schedule. Maps cleanly to BSE StAR MF / MFU semantics, so it slots into existing MF advisory tools.
Retrieves funds in/out, segment-wise margins, and contract notes. Exportable as JSON, Excel, or PDF for CA-side reconciliation, GST workflows, and STCG/LTCG capital-gain reporting.
The table below maps SMC Ace data surfaces to the OpenData angles our customers most often request. Granularity reflects what is observable through authorized in-app endpoints; we never claim more than what an authorized session legitimately exposes.
| Data type | Source (in-app screen / feature) | Granularity | Typical downstream use |
|---|---|---|---|
| Demat holdings | Portfolio → Holdings | Per-ISIN, real-time on refresh | Unified net-worth dashboards, risk & concentration analytics |
| Order book | Orders → Pending / Completed | Per-order, intraday tick | Compliance audit, broker-side reconciliation |
| Trade book / executions | Orders → Trades | Per-trade, with brokerage and STT | Tax (STCG/LTCG) and P&L computation |
| Funds ledger | Funds → Statement | Per-transaction, daily close | Cash-flow reporting and treasury sync |
| IPO subscriptions | IPO → My Applications | Per-application, allotment status | IPO tracking apps, ASBA reconciliation |
| Mutual fund folios & SIP | Mutual Funds → Portfolio | Per-folio & per-scheme, NAV-aligned | Goal-based planning, fee analytics, advisor tools |
| Watchlists & alerts | Market → Watchlist | Per-symbol, user-configured | Personalized signals, copy-trading research feeds |
| Margin & MTF positions | Positions → MTF | Per-position with leverage ratio | Risk monitoring, broker-margin analytics |
Context: A personal-finance app wants one screen showing equities at SMC Ace, mutual funds at multiple AMCs, and bank balances. Data & APIs: SMC Ace holdings + funds ledger, plus AMFI scheme metadata. OpenData mapping: Holdings normalized into the SEBI Account Aggregator FIU schema for securities, with consent IDs persisted per pull.
Context: A CA SaaS platform must compute STCG/LTCG for thousands of clients before 31 July. Data & APIs: SMC Ace trade book with buy/sell pairs, plus contract notes. OpenData mapping: Mirrors the CDSL/NSDL eCAS layout so the same parser already used for AA-supplied statements ingests SMC Ace data unchanged.
Context: A creator-led IPO app shows live subscription, GMP, and allotment per user. Data & APIs: SMC Ace IPO module + funds-ledger ASBA blocks. OpenData mapping: Allotment events streamed via webhook so the user sees credit on the same day NSDL/CDSL push the corporate action.
Context: A roboadvisor pulls existing SIPs to avoid double-prescribing the same scheme. Data & APIs: SMC Ace mutual fund folios, SIP schedule, and units. OpenData mapping: Output normalized to BSE StAR MF and MFU field names for advisors that already consume those feeds.
Context: A regulated entity needs daily evidence that employee personal trading respects internal trade-window rules. Data & APIs: SMC Ace order and trade book under written authorization. OpenData mapping: Daily ledger snapshots written to a tamper-evident log, retained per the firm’s SEBI surveillance policy.
Below are abridged request/response shapes from our reference SDK. Real implementations include retries with jittered backoff, idempotency keys on order endpoints, and structured error payloads.
POST /api/v1/smc-ace/auth/login
Content-Type: application/json
{
"client_code": "SMC1234567",
"password": "<encrypted>",
"totp": "482931",
"device_id": "uuid-v4"
}
200 OK
{
"session_token": "eyJhbGciOi...",
"expires_in": 3600,
"refresh_token": "rt_2f8a...",
"rekyc_required": false,
"segments": ["CASH","FNO","CUR","COM","MF"]
}
GET /api/v1/smc-ace/portfolio/holdings
Authorization: Bearer <session_token>
200 OK
{
"as_of": "2026-04-28T09:21:00+05:30",
"holdings": [
{
"isin": "INE002A01018",
"symbol": "RELIANCE",
"exchange": "NSE",
"quantity": 42,
"avg_price": 2780.55,
"ltp": 2914.30,
"pnl": 5617.50,
"product": "CNC"
}
]
}
GET /api/v1/smc-ace/orders/trades
?from=2026-04-01&to=2026-04-28&segment=FNO
Authorization: Bearer <session_token>
200 OK
{
"trades": [
{
"trade_id": "T2604001892",
"order_id": "O2604001771",
"symbol": "NIFTY26APR22500CE",
"exchange": "NFO",
"side": "BUY",
"qty": 50,
"price": 142.55,
"brokerage": 20.0,
"stt": 7.13,
"executed_at": "2026-04-26T10:14:55+05:30"
}
],
"next_cursor": null
}
POST https://customer.example/webhooks/smc-ace/ipo
X-Signature: sha256=ad4e9c...
{
"event": "ipo.allotment.updated",
"user_id": "u_8821",
"ipo": {
"symbol": "ACMESOL",
"lot_applied": 2,
"amount_blocked": 28980,
"status": "ALLOTTED",
"shares_credited": 65,
"credited_at": "2026-04-27"
}
}
We sign a written engagement letter that names the data scopes (e.g. holdings + trades), the user-authorization channel (in-app TOTP and explicit consent screen), the retention window, and the deletion guarantee. Where the customer prefers the SEBI AA route, we expose the same downstream API but switch the upstream connector — the application code does not need to change.
A typical SMC Ace OpenData pipeline runs through four nodes:
SMC Ace primarily serves Indian retail investors and small businesses, with a long tail of NRI users who maintain demat accounts in India. Distribution is strongly Android-led (590k+ Google Play downloads, also on iOS) and is amplified by SMC Global’s offline footprint of 2,154 authorized persons across 413 cities and a network of 6,485 financial distributors. The typical user blends equity delivery with mutual-fund SIPs and the occasional IPO bid — meaning integration partners should expect the same account to surface CASH, FNO, MF, and IPO data on the same session, not in isolation.
Click any thumbnail to view a larger version.
Customers building wealth-tech, advisor, or compliance products rarely stop at a single broker. The apps below come up most often alongside SMC Ace; users frequently hold accounts at two or three of them at once, so a unified API layer is the natural buying motion. We provide the same scope of integration for each; teams that already speak to one of these names will find the SMC Ace contract familiar.
We are an independent technical studio specializing in App interface integration and authorized API integration. Our team has shipped trading, payments, and OpenBanking integrations across India, Southeast Asia, the Middle East, and Latin America. For SMC Ace specifically, our engineers combine NSE/BSE market plumbing with hands-on experience in SEBI Account Aggregator deployments — so we can deliver either a self-hosted source-code drop or a managed pay-per-call gateway, whichever fits your governance.
Send us your target app name (already provided: SMC Ace) and the exact data scopes you need — for example, “daily holdings + trade book for tax workflow” or “IPO allotment webhook for retail community”. We respond with a fixed-price quote and a delivery date.
Engagement options: source-code delivery from $300, or pay-per-call API with no upfront fee.
Do you need my SMC Ace credentials?
Can the same API also cover Zerodha, Upstox, or Groww?
How do you handle SEBI surveillance & DPDP?
SMC Ace: Demat, Stocks & IPO is the flagship retail trading and investing app from SMC Global Securities Ltd. It pitches itself as “your trusted stock trading app and mutual fund app for the Indian share market,” and is built for both new investors opening their first demat account and active traders who want a single workspace for equities, derivatives, mutual funds, and IPOs. It runs on Android and iOS, and is updated frequently — v1.9.2 was released on 30 Sep 2025.
The app supports a full retail stack: free demat account opening, lifetime free AMC, research-backed calls, learning webinars, and zero-cost tools to track equities and mutual funds. Trading covers cash equities with low-latency execution, derivatives (F&O), MTF leverage, currency, commodities, instant IPO subscription, and stock SIPs. Mutual funds were strengthened in SMC Ace 2.0 with online MF investments, SIP automation, and goal-based portfolio views.
Decision-support tools include advanced charts, option chain analysis, script overview, the Market Mojo widget for real-time trends, FII & DII data for institutional flow, and a global market view for indices. Recent quality-of-life improvements (2024-2025) include the Buy & Sell Slider for one-gesture order placement, dark/light themes, Position Widget on Dashboard, ReKYC via App for dormant accounts, and an in-app browser that opens IPO and product pages without leaving the app. Hindi-speaking users are welcomed with bilingual onboarding (“अपना डीमेट खाता खोलें”).
SMC Global Securities itself, incorporated in 1994, is a SEBI-registered broker (INZ000199438) and a member of NSE, BSE, MSE, MCX, and NCDEX. It operates through 2,154 authorized persons across 413 cities and 6,485 financial distributors, providing a strong physical channel that complements the SMC Ace digital surface.