MarketDII Activity Data

DII Activity Data - Fincrux Indian stock market API documentation

# DII Activity Data --- Fetches Domestic Institutional Investor (DII) activity for the NSE equity cash market. Returns buy/sell amounts for domestic institutional flows. ## Rate Limits --- | Plan | R…

DII Activity Data

Fetches Domestic Institutional Investor (DII) activity for the NSE equity cash market. Returns buy/sell amounts for domestic institutional flows.


Rate Limits

PlanRate Limit
Hobby5 requests / day
Plus10 requests / minute

Request

GET /api/market/dii

ParameterDescriptionPriorityType
api_keyUser Generated API Key. Generate Hererequiredstring
intervalData interval. Accepted values: 1D (daily), 1M (monthly)requiredstring
fromStart date for the data range in YYYY-MM-DD format. Provider returns a bounded window from this date.optionalstring
force_updateBypass cache and refresh latest data
Default false
optionalboolean

Limits

  • Daily (1D) — up to 30 trading days of data per request.
  • Monthly (1M) — up to 12 months of data per request.

Response

FieldDescriptionType
successIndicates if the API call was successful or notstring
dataList of DII activity rowsarray
data.time_stampUnix timestamp of the record in millisecondsinteger
data.buy_amountTotal buy value in INRdecimal
data.sell_amountTotal sell value in INRdecimal
data.buy_contractsNumber of contracts boughtinteger
data.sell_contractsNumber of contracts soldinteger
data.oi_contractsOpen interest in number of contractsinteger
data.oi_amountOpen interest value in INRdecimal

Example

curl -X GET \ -H "Content-Type: application/json" \ --url 'https://api.fincrux.org/api/market/dii?interval=1D&api_key={api_key}'
{ "success": "true", "data": [ { "time_stamp": 1746633600000, "buy_amount": 8523456789.0, "sell_amount": 7234567890.5, "buy_contracts": 0, "sell_contracts": 0, "oi_contracts": 0, "oi_amount": 0.0, "total_long_contracts": 0, "total_short_contracts": 0, "total_call_long_contracts": 0, "total_put_long_contracts": 0, "total_call_short_contracts": 0, "total_put_short_contracts": 0 } ] }

Designed & Shipped by Harshit Bansal