/crypto/:ticker/quoteRetrieves a comprehensive quote for a specific cryptocurrency 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 | Cryptocurrency ticker symbol (e.g., "BTC", "ETH", "SOL") |
Examples:
https://api.axionquant.com/crypto/BTC/quotehttps://api.axionquant.com/crypto/ETH/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
Cryptocurrency Quote
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4quote = client.crypto.quote('BTC')
5print(quote)Response
{
"latestClose": 87981.68,
"latestOpen": 85463.3,
"latestHigh": 88292.55,
"latestLow": 85134.06,
"previousClose": 85462.51,
"week52Range": {
"high": 108268.45,
"low": 38420.12
},
"week52AvgClose": 72500.34,
"ema30": 88234.56,
"ema60": 85432.78,
"ema90": 82123.45,
"ema120": 79876.23,
"ytdClosePctChange": 65.432,
"volume": 59129171968,
"avgVolumeLifetime": 42000000000
}/crypto/:tickerRetrieves detailed metadata for a specific cryptocurrency ticker. This endpoint provides essential information for a single cryptocurrency including its unique identifier, full name, and classification type.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Cryptocurrency ticker symbol (e.g., "BTC", "ETH", "SOL") |
Examples:
https://api.axionquant.com/crypto/BTChttps://api.axionquant.com/crypto/ETHResponse Fields
id number
Unique identifier for the cryptocurrency
ticker string
Ticker symbol (e.g., "BTC", "ETH")
name string
Full name of the cryptocurrency
type string
Type classification (spot, futures, perpetual)
category string
Category classification (e.g., cryptocurrencies, smart contract platforms, stablecoins)
rating string
Rating classification (e.g., strongsell, strongbuy)
cap string
Market capitalization as a string
supply string
Circulating supply as a string
lastClose number
Most recent closing price
changePct number
Percentage change since last close
Ticker Details
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4ticker = client.crypto.ticker('BTC')
5print(ticker)Response
{
"id": 1,
"ticker": "BTC",
"name": "Bitcoin",
"type": "spot",
"category": "cryptocurrencies",
"rating": "strongsell",
"cap": "1248599187015.109900",
"supply": "20046943.000000",
"lastClose": 62283.98828125,
"changePct": -2.60838509580443
}/crypto/:ticker/pricesRetrieves comprehensive historical price data for a specific cryptocurrency. This powerful endpoint supports multiple time frame aggregations and time-based filtering for advanced technical analysis and backtesting.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Cryptocurrency ticker symbol (e.g., "BTC", "ETH", "SOL") |
Query Parameters
| Parameter | Type | Required | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| frame | string | Optional | Time frame for price 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/crypto/BTC/priceshttps://api.axionquant.com/crypto/ETH/prices?frame=weekly&from=2024-01-01&to=2024-12-31Response Fields
time string
ISO 8601 timestamp of the data point
ticker string
Cryptocurrency ticker symbol
open string
Opening price (decimal string to preserve precision)
high string
Highest price during the period
low string
Lowest price during the period
close string
Closing price
volume string
Trading volume (decimal string)
Historical Prices
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4prices = client.crypto.prices('BTC',
5 frame='daily',
6 from_date='2025-12-01',
7 to_date='2025-12-19'
8)
9print(prices)Response (Daily Frame)
[
{
"time": "2025-12-19T12:43:00.000Z",
"ticker": "BTC",
"open": "85463.3000",
"high": "88292.5500",
"low": "85134.0600",
"close": "87981.6800",
"volume": "59129171968"
},
{
"time": "2025-12-18T00:00:00.000Z",
"ticker": "BTC",
"open": "86144.3700",
"high": "89412.6600",
"low": "84436.3100",
"close": "85462.5100",
"volume": "52667115348"
}
]