GENKA 原価 · Docs / Ecosystem

Ecosystem All ecosystem services Groww API docs ↗

Groww API — clean broker UX, ₹499/mo data

The smoothest mobile broker UX in India, with a flat-pricing REST API. The friendly choice for execution.

What it's great at. Groww has the smoothest mobile broker UX in India, and the trade API mirrors that sensibility — one ₹499/mo flat fee covers market feed, orders, portfolio, historical data, margin. Recently launched Groww Cloud for broker-side algo execution. No first-party MCP yet (community wrapper: arkapravasinha/groww-mcp-server). Compose with Genka for the read-side: XBRL fundamentals, concall search, MF screener.

Decision matrix

If you needPick
Place / modify / cancel an equity, F&O, or MTF orderGroww
Live market feed, depth, order bookGroww
Portfolio, holdings, positions on your Groww accountGroww
Run an algo on the broker side (Groww Cloud)Groww
Quarterly XBRL fundamentals for Nifty 500 (FY17+)Genka
Concall search across ~23k transcriptsGenka
Mutual fund screener (4,700 funds, SEBI taxonomy)Genka
30y NSE bhavcopy with corp-action-adjusted returnsGenka
Work without a Groww account / cross-broker researchGenka

What Groww API is great at

Where Genka complements Groww

Compose them

Genka over MCP, Groww over REST (until Groww ships first-party MCP):

# 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 Groww REST from your agent code (Python):
import os, requests
GROWW = "https://api.groww.in"
HDR = {"Authorization": f"Bearer {os.environ['GROWW_TOKEN']}"}

# Genka decides (via Claude / MCP), Python sends the order:
requests.post(f"{GROWW}/v1/order/create", headers=HDR, json={
  "trading_symbol": "TCS",
  "quantity": 5,
  "transaction_type": "BUY",
  "order_type": "MARKET",
  "product": "CNC",
})

Relevant Genka endpoints

Full catalog: /llms.txt

Working with Groww API — gotchas

Other ecosystem services