Forex Quote API Real-Time Exchange Rates forex API REST API 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.

Please select

Batch Real-Time Quote

GET
/forex/quotes

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
onumber
Opening price
hnumber
Highest price
lnumber
Lowest price
tnumber
Timestamp of the latest trade
vnumber
Transaction volume
tunumber
Trading amount
tsnumber
Trading status of the symbol
chnumber
Change
chpnumber
Change %

Code Examples

import requests

url = "https://api.itick.org/forex/quotes?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/quotes?region=GB&codes=EURUSD,GBPUSD

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "EURUSD": {
      "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
    },
    "GBPUSD": {
      "s": "GBPUSD",
      "ld": 1.33643,
      "o": 1.3393,
      "h": 1.33998,
      "l": 1.33422,
      "t": 1765576736076,
      "v": 1561368.1,
      "tu": 2088514.87546,
      "ch": -0.0019,
      "chp": -0.14,
      "ts": 0
    }
  }
}
  1. Batch Real-Time TickForex Market

    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.

  2. Forex MarketBatch Real-Time Depth

    Batch real-time order book depth data for multiple forex currency pairs, covering major currency pairs such as EUR, GBP, JPY, CHF. Provides complete buy-sell order lists for each currency pair, including multi-level prices and order volumes, with millisecond-level real-time updates.