kotaksecurities.com APIkotaksecurities.com ↗
Access Kotak Securities mutual fund NAV, holdings, sector allocation, market indices, and top gainers via 6 structured JSON endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/ea37b5c4-a03f-49cb-a440-b41b9f52ebec/list_mutual_funds' \ -H 'X-API-Key: $PARSE_API_KEY'
List available mutual funds with their slugs and names. Returns a curated list of popular funds displayed on the Kotak Neo mutual funds page.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of objects with id (null), name (string), and slug (string)"
},
"sample": {
"data": [
{
"id": null,
"name": "Parag Parikh Flexi Cap",
"slug": "parag-parikh-flexi-cap-fund"
},
{
"id": null,
"name": "SBI Small Cap Fund",
"slug": "sbi-small-cap-fund"
}
],
"status": "success"
}
}About the kotaksecurities.com 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.
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.
- 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.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Kotak Securities offer an official developer API?+
What does get_mutual_fund_detail return, and does it include SIP-specific data?+
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?+
Is historical price or index time-series data available from these endpoints?+
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?+
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.