CURL command issue while calling INDIA VIX

PRCHAKR
I need to call INDIA VIX and other market quote like Nifty 50 or INFY at the same time but it is not working. Few combinations are below, please check. when i try to INDIA VIX alone it is working but if i combine other than one i parameter CURL command is getting response. I already gone through the documentation and tried that combination as well but still not working. please check and provide a working CURL command with multiple i parameter



####Positive Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=264969 -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"success","data":{"264969":{"instrument_token":264969,"last_price":16.19}}}

####Negative Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=264969&i=128224516 -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"error","message":"Invalid `api_key` or `access_token`.","data":null,"error_type":"InputException"}'i' is not recognized as an internal or external command,
operable program or batch file.

####Positive Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=NSE:INDIA+VIX -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"success","data":{"NSE:INDIA VIX":{"instrument_token":264969,"last_price":16.22}}}

####Negative Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=NSE:INDIA+VIX&i=NSE:INFY -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"error","message":"Invalid `api_key` or `access_token`.","data":null,"error_type":"InputException"}'i' is not recognized as an internal or external command,
operable program or batch file.

####Negative Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=NSE:INDIA+VIX&NSE:INFY -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"error","message":"Invalid `api_key` or `access_token`.","data":null,"error_type":"InputException"}The filename, directory name, or volume label syntax is incorrect.

####Negative Response#####
C:\Users\prasa>curl --max-time 1.5 https://api.kite.trade/quote/ltp?i=NSE:INDIA+VIX,NSE:INFY -H "X-Kite-Version: 3" -H "Authorization:token ABC:ABC"
{"status":"success","data":{}}
This discussion has been closed.