# Nse — 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.

> Nse provides 1 callable API endpoint through the Parse marketplace.

**Category:** Finance & Markets | **Website:** [nse.comhttps//www.nseindia.com/market-data/large-deals](https://nse.comhttps//www.nseindia.com/market-data/large-deals) | **Docs:** [parse.bot/marketplace/9de54ac7-dd6e-41b9-932f-3af588cfc871/nse-comhttps-api](https://parse.bot/marketplace/9de54ac7-dd6e-41b9-932f-3af588cfc871/nse-comhttps-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-nse-comhttps-api-9de54ac7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_large_deals

Returns the current day's large deals from NSE India. Data includes bulk deals, block deals, or short selling positions depending on the deal_type parameter. Each deal record includes the trading symbol, security name, client name, buy/sell direction, quantity traded, and weighted average trade price. Short selling data may have null values for client_name, buy_sell, trade_price, and remarks fields. Returns all deals of the selected type in a single response with no pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `deal_type` | string | No | Type of large deal to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nse-comhttps-api-9de54ac7/get_large_deals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"deal_type":"<string>"}'
```
