/etfs/:ticker/quoteRetrieves a comprehensive quote for a specific ETF ticker. 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | ETF ticker symbol (e.g., "SPY", "QQQ") |
Examples:
https://api.axionquant.com/etfs/SPY/quotehttps://api.axionquant.com/etfs/QQQ/quoteResponse 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
nav number
Net asset value per share
expense number
Expense ratio of the ETF
ETF Quote
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4quote = client.etfs.quote('SPY')
5print(quote)Response
{
"latestClose": 717,
"latestOpen": 717.7199707,
"latestHigh": 718.73999023,
"latestLow": 712.55999756,
"previousClose": 725.51000977,
"week52Range": {
"high": 748.65,
"low": 551.56
},
"week52AvgClose": 622.6539,
"ema30": 715.807,
"ema60": 695.0426,
"ema90": 677.9436,
"ema120": 664.6458,
"ytdClosePctChange": 16.9429,
"volume": 15379091,
"avgVolumeLifetime": 64776883.168,
"nav": 723.16,
"expense": 0.0018
}/etfs/:ticker/fundRetrieves comprehensive metadata and characteristics for a specific ETF, including classification, ratings, efficiency scores, and trading metrics. Essential for understanding an ETF's investment strategy and quality.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | ETF ticker symbol (e.g., "SPY", "QQQ", "VTI") |
Examples:
https://api.axionquant.com/etfs/SPY/fundhttps://api.axionquant.com/etfs/QQQ/fundResponse Fields
ticker string
ETF ticker symbol
fund string
Full fund name
assetclass string
Primary asset class (e.g., "Equity")
category string
Investment category
focus string
Market focus (e.g., "Large Cap")
lettergrade string
Overall letter grade (A-F)
efficiencyscore number
Efficiency score (0-100)
tradabilityscore number
Tradability score (0-100)
overallratingdate string
Date of last rating (ISO 8601)
primaryexchange string
Primary listing exchange
Fund Information
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4fund = client.etfs.fund('SPY')
5print(fund)Response
{
"ticker": "SPY",
"fund": "SPDR S&P 500 ETF Trust",
"assetclass": "Equity",
"category": "Size and Style",
"focus": "Large Cap",
"niche": "Broad-based",
"region": "North America",
"geography": "U.S.",
"segment": "Equity: U.S. - Large Cap",
"segmentid": 261,
"hassegmentreport": true,
"lettergrade": "A",
"analystpick": false,
"opportunitieslist": false,
"efficiencyscore": 99.69286,
"tradabilityscore": 99.679609,
"fitscore": null,
"segmentavgefficiency": 80.6980909027027,
"segmentavgtradability": 79.1212271516854,
"segmentavgfit": 59.8830314558824,
"overallratingdate": "2024-08-15T00:00:00.000Z",
"msciesghasbadge": false,
"genericrpt": false,
"msciesgready": true,
"dividendyield": null,
"state": 1,
"inverse": false,
"leveraged": false,
"overallratingscore": "A ",
"morecomparisons": "IVV,VOO,SPLG,SCHX,IWB",
"medianspreadpct45day": 0.000029,
"primaryexchange": "NYSEArca"
}/etfs/:tickerRetrieves 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | ETF ticker symbol (e.g., "SPY", "QQQ", "IVV") |
Examples:
https://api.axionquant.com/etfs/SPYhttps://api.axionquant.com/etfs/QQQResponse 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
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"
}