quote for UDSINR Futures

pytrader
Following is the code using which I am trying to pull data for USDINR. But I am not getting it right. Can anyone help me out.

instruments = 'NFO:USDINR19APRFUT'
headers = {'X-Kite-Version': '3', 'Authorization': authorization_token,}
parameters = (('i', [instruments]),)

response = requests.get('https://api.kite.trade/quote/ltp', headers = headers,
params = parameters)

quotes = response.json()
print(quotes)

Thanks
This discussion has been closed.