import requests
url = "https://api.itick.org/future/quotes?region=US&codes=NQ,ES"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
{
"code": 0,
"msg": null,
"data": {
"NQ": {
"s": "NQ",
"ld": 22948.5,
"o": 22905,
"h": 23021,
"l": 22903,
"t": 1754062000728,
"v": 146147,
"tu": 2829874378.75,
"ts": 0
},
"ES": {
"s": "ES",
"ld": 65.04,
"o": 65.99,
"h": 66.265,
"l": 64.59,
"t": 1754683199000,
"v": 1370257,
"tu": 89156797.87,
"ts": 0
}
}
}