Ecosystem All ecosystem services INDstocks API docs ↗
INDmoney / INDstocks — wealth + cheap broker
A consumer wealth aggregator paired with a developer-side discount brokerage. Different shapes, same family.
What they're great at. The INDmoney consumer app is the cleanest cross-asset wealth aggregator in India
— US stocks (fractional), Indian stocks, MFs, FDs, insurance, loans, EPF tracking, all in one user-facing app.
The INDstocks API is the developer broker layer: ₹5 flat per order regardless of size, MF investments brokerage-free.
Account-tied (KYC + F&O onboarding required, SEBI rule). No first-party MCP yet.
Compose with Genka for the research that runs across any portfolio, not just the user's holdings.
Decision matrix
| If you need | Pick |
|---|---|
| Place orders on an INDmoney account (cheap ₹5/order) | INDstocks API |
| Aggregate wealth view for one user (US + IN stocks, MFs, loans) | INDmoney consumer app |
| Holdings, positions on the user's INDmoney account | INDstocks API |
| Quarterly XBRL fundamentals for Nifty 500 (FY17+) | Genka |
| Search 23,000 concall transcripts with cited LLM Q&A | Genka |
| Mutual fund screener (4,700 funds, SEBI taxonomy) | Genka |
| Pre-computed indicator panel for any NSE symbol | Genka |
| Cross-broker / no INDmoney account | Genka |
What INDmoney / INDstocks is great at
- INDmoney consumer app. Wealth aggregation: US stocks (fractional), Indian stocks, mutual funds, FDs, insurance, loans, EPF tracking. Designed for one user, not a developer surface.
- INDstocks trading API. Place / modify / cancel orders; portfolio; positions; holdings.
- Pricing. ₹5 flat per order regardless of size. Mutual fund investment is brokerage-free.
- Onboarding. KYC + F&O onboarding required (SEBI rule).
- Auth. Generate access token in your INDmoney account; pass to API or third-party platforms (Tradetron etc.).
- MCP status. No first-party MCP server.
- What it does not ship. Quarterly fundamentals, concalls, MF analytics for funds outside your portfolio.
Where Genka complements INDstocks
- Quarterly XBRL fundamentals. Primary-source NSE filings, FY17 onward, with audit URL per number.
- Concall corpus. ~23,000 transcripts; BM25 search; grounded Q&A with citations.
- MF analytics. 4,700 funds, SEBI taxonomy, 20y NAV, screener, backtester — not just funds you happen to hold.
- Indicator panel. Pre-computed RSI, MACD, DMA, multi-window CA-adjusted returns per symbol.
- Broker-agnostic. Works for users on any broker, or none.
Compose them
Genka does the research, INDstocks places the order:
# 1. Wire Genka to Claude Code: claude mcp add genka --transport http https://genka.dev/mcp \ -H "X-API-Key: $GENKA_API_KEY" # 2. Use INDstocks REST for execution (Python): import os, requests INDS = "https://api.indstocks.com" HDR = {"x-api-key": os.environ["INDS_TOKEN"]} # Genka decides via Claude/MCP, Python sends the order: requests.post(f"{INDS}/orders", headers=HDR, json={ "symbol": "TCS", "side": "BUY", "type": "MARKET", "qty": 5, "product": "CNC", })
Relevant Genka endpoints
GET /v1/companies/{symbol}/ratios— quarterly fundamentalsGET /v1/prices/{symbol}/latest— pre-computed indicator panelPOST /v1/concalls/answer— grounded Q&A with citationsGET /v1/mf/screener— MF filterGET /v1/prices?symbols=A,B— multi-symbol price series
Full catalog: /llms.txt
Working with INDstocks API — gotchas
- Static IP whitelisting required for live orders. Direct API access (not via Tradetron) requires whitelisting your server's static IP. Local dev from a residential connection won't work; deploy to a VPS or use Tradetron as the relay.
- KYC + F&O onboarding upfront. Even cash-only orders require completing KYC and F&O onboarding (SEBI rule across all Indian brokers). Budget 1-3 days for first-time activation.
- Token from algo-trading portal. Tokens are minted in the dedicated INDstocks Algo Trading Portal, not the consumer INDmoney app. Same login; different surface.
- MFs are brokerage-free. Equity is ₹5/order; mutual fund orders carry no brokerage at all. If your agent rebalances MFs, INDstocks is among the cheapest in the ecosystem.
Other ecosystem services