Logo
AXION

Forex Quote

GET/forex/:ticker/quote

Retrieves a comprehensive quote for a specific forex currency pair. Returns the latest OHLC values, exponential moving averages (EMA30, EMA60, EMA90, EMA120), 52-week range statistics, year-to-date performance, and volume data for comprehensive market analysis.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredForex currency pair ticker (e.g., "EURUSD", "GBPJPY")

Examples:

https://api.axionquant.com/forex/EURUSD/quote
https://api.axionquant.com/forex/GBPUSD/quote

Response Fields

latestClose number

Most recent closing price

latestOpen number

Most recent opening price

latestHigh number

Most recent high price

latestLow number

Most recent low price

previousClose number

Previous closing price

week52Range object

52-week high/low range { high: number, low: number }

week52AvgClose number

Average closing price over the trailing 52 weeks

ema30 number

30-period exponential moving average

ema60 number

60-period exponential moving average

ema90 number

90-period exponential moving average

ema120 number

120-period exponential moving average

ytdClosePctChange number

Year-to-date closing price percentage change

volume number

Most recent trading volume

avgVolumeLifetime number

Lifetime average trading volume

|

Forex Quote

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4quote = client.forex.quote('EURUSD')
5print(quote)

Response

{
  "latestClose": 1.1045,
  "latestOpen": 1.1032,
  "latestHigh": 1.1067,
  "latestLow": 1.1021,
  "previousClose": 1.1032,
  "week52Range": {
    "high": 1.1278,
    "low": 1.0543
  },
  "week52AvgClose": 1.0891,
  "ema30": 1.1056,
  "ema60": 1.0998,
  "ema90": 1.0945,
  "ema120": 1.0912,
  "ytdClosePctChange": 1.234,
  "volume": 0,
  "avgVolumeLifetime": 0
}
GET/forex/:ticker

Retrieves detailed metadata for a specific forex currency pair. This endpoint provides comprehensive information for a single currency pair including its full description, exchange provider, and associated country code.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredForex currency pair ticker symbol (e.g., "AEDAUD", "EURUSD", "GBPJPY")

Examples:

https://api.axionquant.com/forex/EURUSD
https://api.axionquant.com/forex/GBPUSD

Response Fields

id number

Unique identifier for the forex pair

ticker string

Currency pair ticker (e.g., "AEDAUD")

detail string

Full description of the currency pair

exchange string

Exchange or data provider code

country string

Country code (ISO 3166-1 alpha-2)

rating string

Rating classification (e.g., strongsell)

lastClose number

Most recent closing price

changePct number

Percentage change since last close

|

Ticker Details

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4ticker = client.forex.ticker('AEDAUD')
5print(ticker)

Response

{
  "id": 27,
  "ticker": "AEDUSD",
  "detail": "U.A.E. DIRHAM / U.S. DOLLAR",
  "exchange": "IDC",
  "country": "AE",
  "rating": "strongsell",
  "lastClose": 0.2722718418,
  "changePct": -0.0353971137185937
}
GET/forex/:ticker/prices

Retrieves comprehensive historical exchange rate data for a specific forex currency pair. This powerful endpoint supports multiple time frame aggregations and time-based filtering for advanced technical analysis, backtesting, and risk management in foreign exchange markets.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredForex currency pair ticker symbol (e.g., "AEDAUD", "EURUSD", "GBPJPY")

Query Parameters

ParameterTypeRequiredDescription
framestringOptional

Time frame for data aggregation. Default: daily.

Value(s)Resolves to
daily, day, ddaily
weekly, wweek
monthly, month, mmonth
quarterly, quarter, qquarter
yearly, year, yyear
tostringOptionalEnd date for historical data (ISO 8601 format). If not provided, returns data up to the latest available.
fromstringOptionalStart date for historical data (ISO 8601 format). Automatically clamped by the system if too far in the past.

Examples:

https://api.axionquant.com/forex/EURUSD/prices
https://api.axionquant.com/forex/GBPUSD/prices?frame=weekly&from=2024-01-01&to=2024-12-31

Response Fields

time string

ISO 8601 timestamp of the data point

ticker string

Forex pair ticker symbol

open string

Opening exchange rate (decimal string)

high string

Highest rate during the period

low string

Lowest rate during the period

close string

Closing exchange rate

volume string

Trading volume (may be "0" for illiquid pairs)

|

Historical Exchange Rates

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4prices = client.forex.prices('AEDAUD',
5    frame='daily',
6    from_date='2025-12-01',
7    to_date='2025-12-19'
8)
9print(prices)

Response (Daily Frame)

[
  {
    "time": "2025-12-19T13:26:59.000Z",
    "ticker": "AEDAUD",
    "open": "0.4100",
    "high": "0.4100",
    "low": "0.4100",
    "close": "0.4100",
    "volume": "0"
  },
  {
    "time": "2025-12-18T00:00:00.000Z",
    "ticker": "AEDAUD",
    "open": "0.4100",
    "high": "0.4100",
    "low": "0.4100",
    "close": "0.4100",
    "volume": "0"
  }
]