Issue in getting LTP for FNO trades

Dear Upstox API Team,
I hope this message finds you well. I am reaching out to bring to your attention an issue we are experiencing with the Market Quote APIs, specifically concerning FNO trades.
According to the examples provided in your documentation, we have been using the APIs as intended, but they do not seem to be functioning properly for FNO trades. This has been affecting our trading operations.
I am attaching the relevant data for your review. We would appreciate your prompt assistance in resolving this matter.
Thank you for your attention to this issue.
Best regards,
Pratik

data:- [
“GET”,
https://api.upstox.com/v2/market-quote/ltp?instrument_key=NCD_FO|11099”,
,
[
“accept: application/json”,
“Content-Type: application/x-www-form-urlencoded”,
“Authorization: Bearer *”
]
]

please guide me ASAP on the same or tell me if any other API for the same

The contract you’re trying to retrieve has no trading activity, so the data is empty.

Try the following contract instead:

https://api.upstox.com/v2/market-quote/ltp?instrument_key=NCD_FO|14581

Response:

{
    "status": "success",
    "data": {
        "NCD_FO:USDINR24OCT84.25CE": {
            "last_price": 0.02,
            "instrument_token": "NCD_FO|14581"
        }
    }
}

Please avoid sharing sensitive information, such as access tokens, publicly on the forum.