Not able to fetch Full Market Quotes using Python

Dear Team

I am trying to pull the Full Market Quote data for the instrument_key ‘NSE_EQ|INE364U01010’ in Python. Following is the code:

import requests
url = “https://api.upstox.com/v2/market-quote/quotes?instrument_key=NSE_EQ|INE364U01010
payload = {}
headers = { ‘Accept’: ‘application/json’}
response = requests.request(“GET”, url, headers = headers, data = payload)
print(response.text)

I am getting the following result:
{“status”:“error”,“errors”:}

Kindly help!
Thanks
Ankush

Below is the code for retrieving the INE364U01010 quotes. Please be assured that this code has been tested and is functioning properly.

import requests

marketQuoteUrl  = "https://api-v2.upstox.com/market-quote/quotes?instrument_key=NSE_EQ|INE364U01010"
accessToken = "{your_access_token}"

headers = {
    "accept": "application/json",
    "Content-Type": "application/x-www-form-urlencoded",
    "Authorization" : f"Bearer {accessToken}"
}
response = requests.get(marketQuoteUrl, headers=headers)