Discover/Kotak Securities API
live

Kotak Securities APIkotaksecurities.com

Access Kotak Securities mutual fund NAV, holdings, sector allocation, market indices, and top gainers via 6 structured JSON endpoints.

Endpoint health
verified 4d ago
get_mutual_fund_top_holdings
list_mutual_funds
get_top_gainers
get_mutual_fund_detail
get_brokerage_plans
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Kotak Securities API?

The Kotak Securities API exposes 6 endpoints covering mutual fund listings, detailed NAV and AUM data, top equity holdings, sector allocations, major market indices, and top-gaining NSE Nifty 50 stocks. The get_mutual_fund_detail endpoint returns fields like expense ratio, risk score, minimum investment, and 1/3/5-year returns for any fund identified by its slug. Market data endpoints surface live SENSEX, NIFTY, and NIFTY BANK prices alongside the day's top gainers.

Try it

No input parameters required.

api.parse.bot/scraper/ea37b5c4-a03f-49cb-a440-b41b9f52ebec/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ea37b5c4-a03f-49cb-a440-b41b9f52ebec/list_mutual_funds' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace kotaksecurities-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Kotak Neo API — mutual funds, market data, brokerage plans."""
from parse_apis.kotak_neo_api import KotakNeo, FundNotFound

client = KotakNeo()

# List available mutual funds and pick the first one
fund_summary = client.mutualfundsummaries.list(limit=5).first()
print(f"First fund: {fund_summary.name} (slug={fund_summary.slug})")

# Get full details for this fund via the summary's navigation method
detail = fund_summary.details()
print(f"NAV: {detail.nav}, AUM: {detail.aum} Cr, Category: {detail.category}")
print(f"Returns: 1Y={detail.returns.one_year_return}%, 3Y={detail.returns.three_year_return}%")

# Get holdings breakdown for the same fund
holdings = fund_summary.holdings()
for h in holdings.equity:
    print(f"  Holding: {h.company} — {h.weight}%")
for s in holdings.sector_distribution:
    print(f"  Sector: {s.sector} — {s.weight}%")

# Check market indices
for index in client.marketindexes.list(limit=5):
    print(f"{index.name}: {index.price} (change: {index.change})")

# Top gaining stocks today
for stock in client.stocks.top_gainers(limit=3):
    print(f"{stock.symbol}: {stock.price} ({stock.change})")

# Typed error handling: attempt to fetch a non-existent fund
try:
    client.mutualfunds.get(slug="non-existent-fund-xyz")
except FundNotFound as exc:
    print(f"Fund not found: {exc.slug}")

# Brokerage plans
for plan in client.brokerageplans.list(limit=5):
    print(f"Plan: {plan.name}")

print("Exercised: mutualfundsummaries.list / details / holdings / marketindexes.list / stocks.top_gainers / mutualfunds.get / brokerageplans.list")
All endpoints · 6 totalmissing one? ·

List available mutual funds with their slugs and names. Returns a curated list of popular funds displayed on the Kotak Neo mutual funds page. Each fund carries a slug usable as input to get_mutual_fund_detail and get_mutual_fund_top_holdings.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of fund summary objects with name and slug"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": null,
          "name": "Parag Parikh Flexi Cap",
          "slug": "parag-parikh-flexi-cap-fund"
        },
        {
          "id": null,
          "name": "Nippon India Large Cap Fund",
          "slug": "nippon-india-large-cap-fund"
        }
      ]
    },
    "status": "success"
  }
}

About the Kotak Securities API

Mutual Fund Data

The list_mutual_funds endpoint returns a catalogue of popular funds available on Kotak Neo, each with a name and slug. Pass that slug to get_mutual_fund_detail to retrieve the fund's nav, aum (in crores), expenseRatio, minInvestment, risk score, rating, category, and a returns object containing oneYearReturn, threeYearReturn, fiveYearReturn, and overallReturn as floats. No additional input parameters are required beyond the slug.

Holdings and Sector Allocation

get_mutual_fund_top_holdings accepts the same slug and returns two arrays: equity, listing up to five holdings with company name and percentage weight, and sector_distribution, covering full sector allocation with corresponding weights. These fields are useful for portfolio overlap analysis or visualizing fund composition without managing a separate data ingestion pipeline.

Market Indices and Movers

get_market_indices returns current price and change values for SENSEX, NIFTY, and NIFTY BANK. get_top_gainers delivers the day's top-performing Nifty 50 stocks with symbol, price, and a formatted change string (e.g. +450.50(+4.72%)). The get_brokerage_plans endpoint returns plan names from the Kotak Neo pricing page, useful for surfacing current brokerage tier names.

Identifiers and Workflow

Fund slugs (e.g. hdfc-flexi-cap-fund, nippon-india-large-cap-fund) are the primary key for fund-level endpoints. The recommended workflow is to call list_mutual_funds first to enumerate valid slugs, then fan out to get_mutual_fund_detail and get_mutual_fund_top_holdings for richer data. No authentication or user-specific parameters are required for any endpoint.

Reliability & maintenanceVerified

The Kotak Securities API is a managed, monitored endpoint for kotaksecurities.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kotaksecurities.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official kotaksecurities.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display mutual fund NAV and expense ratio comparisons across multiple Kotak-listed funds.
  • Build a portfolio overlap tool using sector distribution weights from get_mutual_fund_top_holdings.
  • Track daily SENSEX, NIFTY, and NIFTY BANK movements using get_market_indices.
  • Alert users to top Nifty 50 gainers in a trading dashboard using get_top_gainers.
  • Surface 1-year, 3-year, and 5-year return data to help investors compare fund performance.
  • Enumerate brokerage plan names from get_brokerage_plans for a Kotak Neo product comparison page.
  • Filter mutual funds by minimum investment amount using the minInvestment field for SIP calculators.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Kotak Securities offer an official developer API?+
Kotak Securities offers the Kotak Neo Trade API for algorithmic trading, documented at https://ctradeapi.kotaksecurities.com/. That API focuses on order placement and account management. The Parse API is a separate, structured data access layer for mutual fund and market data from the Kotak Securities website.
What does get_mutual_fund_detail return, and does it include SIP-specific data?+
It returns NAV, AUM, expense ratio, risk score, fund rating, category, minimum lumpsum investment, and return percentages for 1, 3, and 5 years. The minInvestment field reflects lumpsum minimums. Dedicated SIP minimum amounts are not currently in the response. You can fork this API on Parse and revise it to add an endpoint covering SIP-specific investment thresholds.
How many equity holdings does get_mutual_fund_top_holdings return?+
The endpoint returns the top 5 equity holdings by weight, along with a full sector distribution breakdown. It does not return the complete portfolio holdings list. You can fork this API on Parse and revise it to add an endpoint that retrieves a more complete holdings list if the source makes that data available.
Is historical price or index time-series data available from these endpoints?+
Not currently. The get_market_indices endpoint returns current prices and day-change values for SENSEX, NIFTY, and NIFTY BANK, and the fund return fields cover 1/3/5-year aggregate figures. Point-in-time historical OHLCV series are not exposed. You can fork this API on Parse and revise it to add a historical data endpoint if the underlying source exposes it.
Does the mutual fund list cover all funds on the Kotak Neo platform, or only a subset?+
The list_mutual_funds endpoint returns a curated list of popular funds displayed on the Kotak Neo mutual funds page, not the full fund universe available on the platform. Coverage is limited to what appears on that page at the time of the request.
Page content last updated . Spec covers 6 endpoints from kotaksecurities.com.
Related APIs in FinanceSee all →
hdfcsec.com API
Track real-time equity market movements by finding the most active NSE stocks, top gainers and losers, 52-week highs and lows, and detailed stock quotes. Search for specific stocks and get comprehensive market overviews to make informed investment decisions.
morningstar.in API
Access mutual fund and stock data from Morningstar India. Search by name or ticker, then retrieve NAV, expense ratios, star ratings, historical performance, asset allocation, portfolio holdings, risk metrics, and analyst pillar ratings for any covered fund.
mfcentral.com API
Explore mutual fund schemes across different AMCs and categories, search for specific funds, and access detailed performance metrics and scheme information. Get answers to common questions and discover all available fund houses in one centralized platform.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
nepalstock.com.np API
Access real-time stock prices, market indices, and trading data from Nepal's stock exchange (NEPSE). Retrieve live price updates, market summaries, top performers, and detailed information on listed securities.
niftyindices.com API
niftyindices.com API