The Scrip Master API provides direct download links to the latest scrip master (instrument master) CSV files for all supported exchange segments. These files include instrument tokens, symbols, and other key data required for trading activities and symbol lookups.
GET <Base URL>
/script-details/1.0/masterscrip/file-paths
Replace <Base URL>
with the relevant Kotak environment base URL provided in response from /tradeApiValidate api.
Name | Type | Description |
---|---|---|
Authorization | string | Token provided in your NEO API dashboard - use plain token |
Example Request
curl --location '<Base URL>/script-details/1.0/masterscrip/file-paths' \\
--header 'Authorization: xxxxx-your-neo-token-xxxx'
No request parameters or request body required.
{
"data": {
"filesPaths": [
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed/cde_fo.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed/mcx_fo.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed/nse_fo.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed/bse_fo.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed/nse_com.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed-v1/bse_cm-v1.csv>",
"<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod/yyyy-mm-dd/transformed-v1/nse_cm-v1.csv>"
],
"baseFolder": "<https://lapi.kotaksecurities.com/wso2-scripmaster/v1/prod>"
}
}
Name | Type | Description |
---|---|---|
filesPaths | array | Array of URLs – each is a download link to a CSV for one segment. |
baseFolder | string | The root URL for retrieving CSV files (read-only). |