Logo
AXION

ETFs Ticker Details

GET/etfs/:ticker

Retrieves detailed metadata for a specific ETF ticker. This endpoint provides essential information for a single ETF including its unique identifier, full name, and exchange listing.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredETF ticker symbol (e.g., "SPY", "QQQ", "IVV")

Examples:

https://api.axionquant.com/etfs/SPY
https://api.axionquant.com/etfs/QQQ

Response Fields

id number

Unique identifier for the ETF

name string

Full name of the ETF

ticker string

ETF ticker symbol

symbol string

Full symbol with exchange prefix

exchange string

Exchange where ETF is listed

market string

Market region (e.g., "america")

country string

Country of listing

type string

Fund type (e.g., etf fund)

sector string

ETF sector classification

industry string

ETF industry classification

currency string

Trading currency (e.g., USD)

lastClose number

Most recent closing price

changePct number

Percentage change since last close

issuer string

Issuer/management company of the ETF

description string

Detailed description of the ETF's investment objective and strategy

inception string

Inception date of the ETF (ISO 8601)

|

ETF Ticker Details

Request

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

Response

{
  "id": 5512,
  "name": "Invesco QQQ Trust Series I",
  "ticker": "QQQ",
  "symbol": "NASDAQ:QQQ",
  "exchange": "NASDAQ",
  "market": "america",
  "country": "United States",
  "type": "etf fund",
  "sector": "Miscellaneous",
  "industry": "Investment Trusts/Mutual Funds",
  "currency": "USD",
  "lastClose": 717,
  "changePct": -1.17296931198755,
  "issuer": "Invesco",
  "description": "To maintain the correspondence between the composition and weights of the securities in the trust (the "securities") and the stocks in the NASDAQ-100 Index®, the adviser adjusts the securities from time to time to conform to periodic changes in the identity and/or relative weights of index securities. The composition and weighting of the securities portion of a portfolio deposit are also adjusted to conform to changes in the index.",
  "inception": "1999-03-10T00:00:00.000Z"
}
GET/etfs/:ticker/prices

Retrieves comprehensive historical price data for a specific ETF. This powerful endpoint supports multiple time frame aggregations (daily, weekly, monthly, quarterly, yearly) and time-based filtering. Free tier access includes major US-listed ETFs with full historical data.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredETF ticker symbol (e.g., "SPY", "QQQ", "VTI")

Query Parameters

ParameterTypeRequiredDescription
framestringOptional

Time frame for price 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/etfs/SPY/prices
https://api.axionquant.com/etfs/QQQ/prices?frame=monthly&from=2024-01-01&to=2024-12-31

Response Fields

time string

ISO 8601 timestamp of the data point

ticker string

ETF ticker symbol

open string

Opening price (decimal string)

high string

Highest price during the period

low string

Lowest price during the period

close string

Closing price

volume string

Number of shares traded

|

Historical ETF Prices

Request

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

Response (Daily Frame)

[
  {
    "time": "2025-12-19T19:03:05.000Z",
    "ticker": "SPY",
    "open": "500.1200",
    "high": "502.5600",
    "low": "499.7800",
    "close": "501.3400",
    "volume": "45000000"
  },
  {
    "time": "2025-12-18T14:30:00.000Z",
    "ticker": "SPY",
    "open": "498.4500",
    "high": "501.2300",
    "low": "497.8000",
    "close": "500.1000",
    "volume": "42000000"
  }
]
GET/etfs/list/market

Retrieves all unique market values available in the etfs universe. Filter by market region (e.g., "america", "europe").

Examples:

https://api.axionquant.com/etfs/list/market
|

List by Market

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('market')
5print(values)

Response

[
  "america",
  "australia",
  "canada",
  "china",
  "germany",
  "hongkong",
  "india",
  "japan",
  "korea",
  "ksa",
  "mexico",
  "singapore",
  "uk"
]
GET/etfs/list/country

Retrieves all unique country values available in the etfs universe. Filter by country name or code.

Examples:

https://api.axionquant.com/etfs/list/country
|

List by Country

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('country')
5print(values)

Response

[
  "Aland Islands",
  "Anguilla",
  "Argentina",
  "Australia",
  "Austria",
  "Azerbaijan",
  "Bahamas",
  "Bahrain",
  "Bangladesh",
  "Barbados",
  "Belgium",
  "Bermuda",
  "Brazil",
  "British Virgin Islands",
  "Bulgaria",
  "Cambodia",
  "Cameroon",
  "Canada",
  "Cayman Islands",
  "Chile",
  "China",
  "Colombia",
  "Cyprus",
  "Czech Republic",
  "Denmark",
  "Dominican Republic",
  "Egypt",
  "El Salvador",
  "Estonia",
  "Faroe Islands",
  "Finland",
  "France",
  "Gabon",
  "Germany",
  "Gibraltar",
  "Greece",
  "Hong Kong",
  "Hungary",
  "Iceland",
  "India",
  "Indonesia",
  "Ireland",
  "Israel",
  "Italy",
  "Japan",
  "Jordan",
  "Kazakhstan",
  "Kenya",
  "La Reunion",
  "Liberia",
  "Liechtenstein",
  "Lithuania",
  "Luxembourg",
  "Macau",
  "Macedonia",
  "Malaysia",
  "Malta",
  "Mauritius",
  "Mexico",
  "Monaco",
  "Mongolia",
  "Morocco",
  "Mozambique",
  "Netherlands",
  "New Zealand",
  "Nigeria",
  "Norway",
  "Oman",
  "Pakistan",
  "Panama",
  "Papua New Guinea",
  "Peru",
  "Philippines",
  "Poland",
  "Portugal",
  "Puerto Rico",
  "Qatar",
  "Romania",
  "Russian Federation",
  "Saudi Arabia",
  "Singapore",
  "Slovenia",
  "South Africa",
  "South Korea",
  "Spain",
  "Sweden",
  "Switzerland",
  "Taiwan",
  "Tanzania",
  "Thailand",
  "Turkey",
  "Ukraine",
  "United Arab Emirates",
  "United Kingdom",
  "United States",
  "Uruguay",
  "Uzbekistan",
  "Vietnam",
  "Zambia",
]
GET/etfs/list/currency

Retrieves all unique currency values available in the etfs universe. Filter by trading currency.

Examples:

https://api.axionquant.com/etfs/list/currency
|

List by Currency

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('currency')
5print(values)

Response

[
  "AUD",
  "CAD",
  "CHF",
  "CNY",
  "DKK",
  "EUR",
  "GBP",
  "GBX",
  "HKD",
  "HUF",
  "INR",
  "JPY",
  "KRW",
  "MXN",
  "NOK",
  "NZD",
  "PLN",
  "SAR",
  "SEK",
  "SGD",
  "USD"
]
GET/etfs/list/sector

Retrieves all unique sector values available in the etfs universe. Filter by sector classification.

Examples:

https://api.axionquant.com/etfs/list/sector
|

List by Sector

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('sector')
5print(values)

Response

[
  "Commercial Services",
  "Communications",
  "Consumer Durables",
  "Consumer Non-Durables",
  "Consumer Services",
  "Distribution Services",
  "Electronic Technology",
  "Energy Minerals",
  "Finance",
  "Government",
  "Health Services",
  "Health Technology",
  "Industrial Services",
  "Miscellaneous",
  "N/A",
  "Non-Energy Minerals",
  "Process Industries",
  "Producer Manufacturing",
  "Retail Trade",
  "Technology Services",
  "Transportation",
  "Utilities"
]
GET/etfs/list/industry

Retrieves all unique industry values available in the etfs universe. Filter by industry classification.

Examples:

https://api.axionquant.com/etfs/list/industry
|

List by Industry

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('industry')
5print(values)

Response

[
  "Advertising/Marketing Services",
  "Aerospace & Defense",
  "Agricultural Commodities/Milling",
  "Air Freight/Couriers",
  "Airlines",
  "Alternative Power Generation",
  "Aluminum",
  "Apparel/Footwear",
  "Apparel/Footwear Retail",
  "Auto Parts: OEM",
  "Automotive Aftermarket",
  "Beverages: Alcoholic",
  "Beverages: Non-Alcoholic",
  "Biotechnology",
  "Broadcasting",
  "Building Products",
  "Cable/Satellite TV",
  "Casinos/Gaming",
  "Catalog/Specialty Distribution",
  "Chemicals: Agricultural",
  "Chemicals: Major Diversified",
  "Chemicals: Specialty",
  "Coal",
  "Commercial Printing/Forms",
  "Computer Communications",
  "Computer Peripherals",
  "Computer Processing Hardware",
  "Construction Materials",
  "Consumer Sundries",
  "Containers/Packaging",
  "Contract Drilling",
  "Data Processing Services",
  "Department Stores",
  "Discount Stores",
  "Drugstore Chains",
  "Electric Utilities",
  "Electrical Products",
  "Electronic Components",
  "Electronic Equipment/Instruments",
  "Electronic Production Equipment",
  "Electronics Distributors",
  "Electronics/Appliance Stores",
  "Electronics/Appliances",
  "Engineering & Construction",
  "Environmental Services",
  "Finance/Rental/Leasing",
  "Financial Conglomerates",
  "Financial Publishing/Services",
  "Food Distributors",
  "Food Retail",
  "Food: Major Diversified",
  "Food: Meat/Fish/Dairy",
  "Food: Specialty/Candy",
  "Forest Products",
  "Gas Distributors",
  "General Government",
  "Home Furnishings",
  "Home Improvement Chains",
  "Homebuilding",
  "Hospital/Nursing Management",
  "Hotels/Resorts/Cruise lines",
  "Household/Personal Care",
  "Industrial Conglomerates",
  "Industrial Machinery",
  "Industrial Specialties",
  "Information Technology Services",
  "Insurance Brokers/Services",
  "Integrated Oil",
  "Internet Retail",
  "Internet Software/Services",
  "Investment Banks/Brokers",
  "Investment Managers",
  "Investment Trusts/Mutual Funds",
  "Life/Health Insurance",
  "Major Banks",
  "Major Telecommunications",
  "Managed Health Care",
  "Marine Shipping",
  "Media Conglomerates",
  "Medical Distributors",
  "Medical Specialties",
  "Medical/Nursing Services",
  "Metal Fabrication",
  "Miscellaneous",
  "Miscellaneous Commercial Services",
  "Miscellaneous Manufacturing",
  "Motor Vehicles",
  "Movies/Entertainment",
  "Multi-Line Insurance",
  "N/A",
  "Office Equipment/Supplies",
  "Oil & Gas Pipelines",
  "Oil & Gas Production",
  "Oil Refining/Marketing",
  "Oilfield Services/Equipment",
  "Other Consumer Services",
  "Other Consumer Specialties",
  "Other Metals/Minerals",
  "Other Transportation",
  "Packaged Software",
  "Personnel Services",
  "Pharmaceuticals: Generic",
  "Pharmaceuticals: Major",
  "Pharmaceuticals: Other",
  "Precious Metals",
  "Property/Casualty Insurance",
  "Publishing: Books/Magazines",
  "Publishing: Newspapers",
  "Pulp & Paper",
  "Railroads",
  "Real Estate Development",
  "Real Estate Investment Trusts",
  "Recreational Products",
  "Regional Banks",
  "Restaurants",
  "Savings Banks",
  "Semiconductors",
  "Services to the Health Industry",
  "Sovereign",
  "Specialty Insurance",
  "Specialty Stores",
  "Specialty Telecommunications",
  "Steel",
  "Telecommunications Equipment",
  "Textiles",
  "Tobacco",
  "Tools & Hardware",
  "Trucking",
  "Trucks/Construction/Farm Machinery",
  "Water Utilities",
  "Wholesale Distributors",
  "Wireless Telecommunications"
]
GET/etfs/list/type

Retrieves all unique type values available in the etfs universe. Filter by security type.

Examples:

https://api.axionquant.com/etfs/list/type
|

List by Type

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('type')
5print(values)

Response

[
  "closedend fund",
  "common stock",
  "dr",
  "etf fund",
  "mutual fund",
  "preferred stock",
  "reit fund",
  "structured",
  "unit fund"
]
GET/etfs/list/exchange

Retrieves all unique exchange values available in the etfs universe. Filter by exchange code.

Examples:

https://api.axionquant.com/etfs/list/exchange
|

List by Exchange

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.etfs.list('exchange')
5print(values)

Response

[
  "AMEX",
  "AQUIS",
  "ASX",
  "BIVA",
  "BMV",
  "BSE",
  "CBOE",
  "CSE",
  "DUS",
  "FSE",
  "FWB",
  "HAM",
  "HAN",
  "HKEX",
  "KRX",
  "LSE",
  "LSIN",
  "MUN",
  "NAG",
  "NASDAQ",
  "NEO",
  "NSE",
  "NYSE",
  "OTC",
  "SAPSE",
  "SGX",
  "SSE",
  "SWB",
  "SZSE",
  "TADAWUL",
  "TSE",
  "TSX",
  "TSXV",
  "XETR"
]