Skip to main content

Market_Connect

Get Quote 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/getQuote/ltp

Request details

API Parameters
Parameter Type Example
userId String NP2997
jKey String abc123
exchange String NFO
tradingSymbol String NIFTY06MAR25C22500

Libraries and SDKs

Tabbed Interface
curl --location 'https://connect-go.thefirstock.tech/api/V5
/getQuote/ltp' \
--header 'Content-Type: application/json' \
--data '{
  "userId": "NP2997",
  "jKey": "1478b9b71707210d8851258599b23a6a73d31b19809ac5068560f38dad493d35",
  "exchange": "NFO",
  "tradingSymbol": "NIFTY13MAR25C22500"
}'


Success response details

API Parameters
Parameter Description Example
status
String
Indicates the overall status of the
response, success or failure
success
data.requestTime
String
Timestamp of the response, provided
only on successful response
12:25:00 18-03-2023
data.companyName
String
Company Name associated with the data Nifty Fin Service
data.exchange
String
Exchange where the company is listed,
like NSE, BSE, etc.
NSE
data.token
String
Unique token identifying the company 26037
data.lastTradedPrice
String
Last traded price of the company's stock 17567.05
{
    "status": "success",
    "message": "Quote LTP data retrieved successfully",
    "data": [
        {
            "exchange": "NFO",
            "ltp": "13015",
            "requestTime": "2025-04-03T11:53:43+05:30",
            "token": 54646,
            "tradingSymbol": "NIFTY03APR25C23150"
        }
    ]
}

Failure response details

API Error 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": "failed",
    "code": "400",
    "name": "EXCHANGE/TOKEN",
    "error": {
        "field": "exchange/token",
        "message": "Invalid Exchange/Token"
    }
}