Instruments¶
This endpoint provides a downloadable CSV file containing a list of all tradable instruments and their properties for a given market segment. This is essential for fetching the correct security_id to be used in other API calls, such as placing orders or subscribing to market data feeds.
| Request Type | Path | Description |
|---|---|---|
| GET | /market/instruments | Fetches the CSV file for a specific market segment. |
Get Instrument List¶
Retrieves a CSV file (often called a scrip master or instrument master) containing all tradable symbols for the specified segment.
Endpoint
Query Parameters
| Parameter | Description |
|---|---|
source | The market segment for which to fetch instruments. Enum: equity, fno, index |
Example Request
Bash
curl --location 'https://api.indstocks.com/market/instruments?source=fno' \
--header 'Authorization: YOUR_ACCESS_TOKEN' \
--output instruments.csv
Note
The response for this endpoint is not JSON, but a raw CSV file. The example above shows how to save it directly to a file named instruments.csv using the --output flag in curl.
CSV File Structure
The downloaded file will contain the following columns:
| Column Name | Description |
|---|---|
EXCH | The exchange identifier (e.g., NSE, BSE). |
SEGMENT | The market segment (e.g., E for Equity, FNO). |
SECURITY_ID | The unique ID for the instrument. |
INSTRUMENT_NAME | The type of instrument (e.g., EQUITY, FUTCUR). |
EXPIRY_CODE | Numeric code for the expiry; 0 for non-derivatives. |
TRADING_SYMBOL | The symbol used for trading on the exchange. |
LOT_UNITS | The lot size for F&O contracts. |
CUSTOM_SYMBOL | A more descriptive symbol for the instrument. |
EXPIRY_DATE | The expiry date for derivative contracts. |
STRIKE_PRICE | The strike price for options contracts. |
OPTION_TYPE | The option type (CE for Call, PE for Put). |
TICK_SIZE | The minimum price movement for the instrument. |
EXPIRY_FLAG | Flag indicating expiry type (e.g., M for monthly). |
SEM_EXCH_INSTRUMENT_TYPE | The instrument type as defined by the exchange. |
SERIES | The series code (e.g., EQ). |
SYMBOL_NAME | The base symbol name (e.g., HDFCBANK). |