# Kotak Securities — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access mutual fund listings, NAV data, holdings, and sector allocations from Kotak Securities. Retrieve brokerage plan details and live market data including major indices and top-gaining stocks.

**Category:** Finance & Markets | **Website:** [kotaksecurities.com/](https://kotaksecurities.com/) | **Docs:** [parse.bot/marketplace/d89ced07-3e98-4553-a08b-f14d402606c7/kotaksecurities-com-api](https://parse.bot/marketplace/d89ced07-3e98-4553-a08b-f14d402606c7/kotaksecurities-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brokerage_plans

Get brokerage and pricing plan names from the Kotak Neo pricing page. Returns the list of available trading plans.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/get_brokerage_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_market_indices

Get major market indices (SENSEX, NIFTY, NIFTY BANK) with current prices from the share market today page. Prices reflect the last available trading session data.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/get_market_indices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_mutual_fund_detail

Get detailed information about a mutual fund by its slug, including NAV, AUM, expense ratio, risk rating, and historical returns. The slug is obtainable from list_mutual_funds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Fund slug identifier (e.g., 'nippon-india-large-cap-fund', 'hdfc-flexi-cap-fund'). Obtainable from list_mutual_funds.data.items[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/get_mutual_fund_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_mutual_fund_top_holdings

Get top equity holdings and sector distribution for a mutual fund. Returns the top 5 equity holdings by weight and full sector allocation breakdown.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Fund slug identifier (e.g., 'nippon-india-large-cap-fund'). Obtainable from list_mutual_funds.data.items[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/get_mutual_fund_top_holdings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_top_gainers

Get top gaining stocks for the current trading session from the NSE Nifty 50 index. Returns company names, current prices, and price changes.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/get_top_gainers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_mutual_funds

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kotaksecurities-com-api-d89ced07/list_mutual_funds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
