Hey,
For curl request you can try the below,
curl --location --request GET 'https://api.fyers.in/data-rest/v2/quotes/?symbols=NSE:SBIN-EQ21' \
--header 'Authorization: app_id:access_token'
For python you can try the below,
from fyers_api import fyersModel
client_id = "SPXXXXE7-100"
access_token = "eyJ0eXAiOiJK***.eyJpc3MiOiJhcGkuZnllcnM***.IzcuRxg4tnXiULCx3***"
fyers = fyersModel.FyersModel(client_id=client_id, token=access_token, log_path="/home/user/logs")
data = {
"symbols":"NSE:SBIN-EQ,NSE:HDFC-EQ"
}
response = fyers.quotes(data=data)
print(response)