Forex Tick API Real-Time Forex Transactions forex API REST API Batch real-time Tick data for major global forex currency pairs, including transaction flow data for multiple currency pairs such as EUR, GBP, JPY, CHF. Data includes precise timestamps, transaction prices, trading volumes and buy/sell directions, with millisecond-level update accuracy.

Please select

Batch Real-Time Tick

GET
/forex/ticks

Request Parameters

regionenumRequired
GB
Market code
codesstringRequired
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/ticks?region=GB&codes=EURUSD,GBPUSD"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

Query URL

GET
https://api.itick.org/forex/ticks?region=GB&codes=EURUSD,GBPUSD

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "EURUSD": {
      "s": "EURUSD",
      "ld": 1.16425,
      "t": 1754583972000,
      "v": 3
    },
    "GBPUSD": {
      "s": "GBPUSD",
      "ld": 1.34292,
      "t": 1754583971255,
      "v": 6.3
    }
  }
}
  1. Real-Time KlineForex Market

    K-line data for major global forex currency pairs, including complete OHLC fields such as opening price, highest price, lowest price, and closing price for major currency pairs like EUR, GBP, JPY, CHF. Supports multiple time periods from minute charts to monthly charts, with accurate and reliable data.

  2. Forex MarketBatch Real-Time Quote

    Batch real-time quotes for major global forex currency pairs, providing an API to obtain real-time quote data for multiple forex currency pairs, covering major currency pairs such as EUR, GBP, JPY, CHF. Returns complete quote information including real-time bid price, ask price, mid price and spread for each currency pair, with high update frequency.