import requests
url = "https://api.itick.io/forex/quote?region=GB&code=EURUSD"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
{
"code": 0,
"msg": null,
"data": {
"s": "EURUSD",
"ld": 1.17376,
"o": 1.1741,
"h": 1.17497,
"l": 1.17194,
"t": 1765576744049,
"v": 1193417.3,
"tu": 1400561.87122,
"ch": 0.00001,
"chp": 0.02,
"ts": 0
}
}