Market Quote API inconsistent

response structure:
{
“status”: “success”,
“data”: {
“NSE_FO:NIFTY2543021600PE”: {
“last_price”: 303.9,
“instrument_token”: “NSE_FO|51834”,
“ltq”: 75,
“volume”: 170325,
“cp”: 29.0
}
}
}

and in instruments.json we have instrument_key, because of which i was facing issues

basically input as instrument_key and output as instrument_token

@the_singh In general, the instrument_key and instrument_token refer to the same value — they typically follow the same pattern and represent the same instrument as mentioned in the API documentation.
I’d recommend double-checking the expected request and response format and field usage in the documentation to avoid confusion. Thanks