Skip to main content

Market_Connect

Get Multi Quotes LTP

Our market quotes APIs provide you with access to up-to-date market data for various instruments. These data snapshots are collected directly from the exchanges in real-time, ensuring the accuracy of the information at the time of your request. For real-time streaming market quotes, we recommend utilizing our WebSocket API.

Method: POST

https://connect-go.thefirstock.tech/api/V5/getMultiQuotes/ltp

Request details

API Parameters
Parameter Type Mandatory Example
userId String Yes NP2997
jKey String Yes abc123

Libraries and SDKs

Tabbed Interface
curl --location 'https://connect-go.thefirstock.tech/api/V5/getMultiQuotes/ltp' \
--header 'Content-Type: application/json' \
--data '{
    "userId": "NP2997",
    "jKey": "43426d92f3f877aacc99e8363914a8407a472a5ace34f135ba506b4956d02cb6",
    "data": [
        {
            "exchange": "NSE",
            "tradingSymbol": "Nifty 50"
        },
        {
            "exchange": "NFO",
            "tradingSymbol": "NIFTY03APR25C23500"
        }
    ]
}'


Success response details

API Parameters
Parameter Description Example
status
String
Indicates the status of the API request. success
data.requestTime
String
Time at which the response was received,
present only on successful response.
12:29:12 18-03-2023
data.companyName
String
Name of the company associated with
the data.
NIFTY INDEX
data.exchange
String
Exchange segment like NSE, BSE,
NFO, BFO.
NSE
data.token
String
Token identifier for the company
or contract.
26000
data.lastTradedPrice
String
Last traded price of the stock,
or contract.
17438.65
{
    "status": "success",
    "message": "LTP data retrieved successfully",
    "data": [
        {
            "exchange": "NFO",
            "ltp": "0.05",
            "requestTime": "2025-04-03T10:06:14Z",
            "token": 54712,
            "tradingSymbol": "NIFTY03APR25C23500"
        },
        {
            "exchange": "NSE",
            "ltp": "23250.10",
            "requestTime": "2025-04-03T10:06:14Z",
            "token": 26000,
            "tradingSymbol": "Nifty 50"
        }
    ]
}

Failure response details

API Parameters
Parameter Description Example
status
String
Indicates the result status of the API operation failed
code
String
HTTP status code associated with the error 400
name
String
Specifies the type or category
of the error encountered
EXCHANGE/TOKEN
error.field
String
Field in the request that triggered
the error
exchange/token
error.message
String
Detailed message describing the error Invalid Exchange/Token
{
    "status": "success",
    "data": [
        {
            "status": "Failed",
            "code": "400",
            "name": "EXCHANGE/TOKEN",
            "error": {
                "field": "exchange/token",
                "message": "Invalid Exchange/Token"
            }
        }
    ]
}