/indices/:tickerRetrieves detailed metadata for a specific market index. This endpoint provides comprehensive information for a single index including its full name, ticker symbol, and the exchange where it's calculated or traded.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Index ticker symbol (e.g., "AXJO", "AEX", "GVZ", "GRNWATERLEURX") |
Examples:
https://api.axionquant.com/indices/SPXhttps://api.axionquant.com/indices/NDXResponse Fields
id number
Unique identifier for the index
ticker string
Index ticker symbol (e.g., "AXJO", "AEX")
name string
Full name of the index
exchange string
Exchange where the index is calculated/traded
country string
Country of the index
timezone string
Trading timezone (e.g., AEST)
lastClose number
Most recent closing price
changePct number
Percentage change since last close
Index Ticker Details
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4ticker = client.indices.ticker('GRNWATERLEURX')
5print(ticker)Response
{
"id": 5,
"ticker": "AXJO",
"name": "S&P/ASX 200",
"exchange": "ASX",
"country": "australia",
"timezone": "AEST",
"lastClose": 8816.09960938,
"changePct": -0.142723001701814
}/indices/:ticker/pricesRetrieves comprehensive historical data for a specific market index. This powerful endpoint supports multiple time frame aggregations and time-based filtering for advanced technical analysis, backtesting, and benchmark performance measurement.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Index ticker symbol (e.g., "AXJO", "AEX", "GVZ", "GRNWATERLEURX") |
Query Parameters
| Parameter | Type | Required | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| frame | string | Optional | Time frame for data aggregation. Default:
| ||||||||||||
| to | string | Optional | End date for historical data (ISO 8601 format). If not provided, returns data up to the latest available. | ||||||||||||
| from | string | Optional | Start date for historical data (ISO 8601 format). Automatically clamped by the system if too far in the past. |
Examples:
https://api.axionquant.com/indices/SPX/priceshttps://api.axionquant.com/indices/NDX/prices?frame=monthly&from=2024-01-01&to=2024-12-31Response Fields
time string
ISO 8601 timestamp of the data point
ticker string
Index ticker symbol
open string
Opening index value (decimal string)
high string
Highest index value during the period
low string
Lowest index value during the period
close string
Closing index value
volume string
Trading volume (may be "0" for non-tradable indices)
Historical Index Data
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4prices = client.indices.prices('GVZ',
5 frame='daily',
6 from_date='2025-12-01',
7 to_date='2025-12-19'
8)
9print(prices)Response (Daily Frame)
[
{
"time": "2025-12-19T16:31:46.000Z",
"ticker": "GVZ",
"open": "21.2600",
"high": "21.3900",
"low": "20.8100",
"close": "21.0600",
"volume": "0"
},
{
"time": "2025-12-18T14:30:00.000Z",
"ticker": "GVZ",
"open": "20.6500",
"high": "21.5100",
"low": "20.0500",
"close": "21.3100",
"volume": "0"
}
]/indices/list/exchangeRetrieves all unique exchange values available in the indices universe. Filter by exchange code.
Examples:
https://api.axionquant.com/indices/list/exchangehttps://api.axionquant.com/indices/list/exchange?country=americaList by Exchange
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.indices.list('exchange')
5print(values)Response
[
"AMS",
"ASE",
"ASX",
"BRU",
"BSE",
"BUD",
"BUE",
"BVB",
"BVC",
"CAI",
"CGI",
"CXI",
"DJI",
"DOH",
"EBS",
"FGI",
"FSI",
"GER",
"HKG",
"ISE",
"IST",
"JKT",
"JNB",
"KLS",
"KOE",
"KSC",
"LIS",
"MCE",
"MEX",
"MSC",
"NIM",
"NSI",
"NYS",
"NZE",
"OPI",
"OSA",
"PAR",
"PRA",
"SAO",
"SAU",
"SES",
"SET",
"SGO",
"SNP",
"STO",
"STU",
"TAI",
"TLV",
"TSI",
"VIE",
"VSE",
"WCB",
"YHD",
"ZRH"
]/indices/list/timezoneRetrieves all unique timezone values available in the indices universe. Filter by timezone.
Examples:
https://api.axionquant.com/indices/list/timezoneList by Timezone
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.indices.list('timezone')
5print(values)Response
[
"AEST",
"ART",
"AST",
"BRT",
"BST",
"CDT",
"CEST",
"CLT",
"CST",
"EDT",
"EEST",
"HKT",
"ICT",
"IDT",
"IST",
"JST",
"KST",
"MYT",
"NZST",
"SAST",
"SGT",
"TRT",
"WEST",
"WIB"
]/indices/list/countryRetrieves all unique country values available in the indices universe. Filter by country name or code.
Examples:
https://api.axionquant.com/indices/list/countryList by Country
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.indices.list('country')
5print(values)Response
[
"africa",
"america",
"asia",
"australia",
"europe",
"pacific"
]