Real-time Forex Tick Data forex API REST API Real-time transaction data for major global forex exchange currency pairs, including key trading pairs such as EUR, GBP, JPY, and CHF. The data comprises transaction prices, volumes, timestamps, and trade directions, updated with millisecond-level precision.
Please select
Real-Time Tick
GET
/forex/tick
Request Parameters
regionenumRequired
GB
Market code
codestringRequired
Product code
Response Parameters
codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
ldnumber
Latest price
tnumber
Timestamp of the latest trade
vnumber
Transaction volume
Code Examples
import requests
url = "https://api.itick.org/forex/tick?region=GB&code=EURUSD"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
Query URL
GET
https://api.itick.org/forex/tick?region=GB&code=EURUSD
Response Result
{
"code": 0,
"msg": null,
"data": {
"s": "EURUSD",
"ld": 1.16429,
"t": 1754583901037,
"v": 1.8
}
}- Batch Real-Time KlineCrypto Market
Batch query historical K-line data for multiple crypto trading pairs. Supports complete OHLCV data across multiple timeframes, ranging from minute to monthly intervals, with the ability to trace back several years of history. The data is provided in a standardized and uniform format.
- Forex MarketReal-Time Quote
Real-time quote data for major global forex currency pairs, including real-time bid price, ask price, mid price and spread for major currency pairs such as EUR, GBP, JPY, CHF. Data sourced from multiple liquidity providers with high update frequency.