Logo
AXION

Crypto Ticker Details

GET/crypto/:ticker

Retrieves 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

ParameterTypeRequiredDescription
tickerstringRequiredCryptocurrency ticker symbol (e.g., "BTC", "ETH", "SOL")

Examples:

https://api.axionquant.com/crypto/BTC
https://api.axionquant.com/crypto/ETH

Response 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

Sample code
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
}
GET/crypto/:ticker/prices

Retrieves 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

ParameterTypeRequiredDescription
tickerstringRequiredCryptocurrency ticker symbol (e.g., "BTC", "ETH", "SOL")

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/crypto/BTC/prices
https://api.axionquant.com/crypto/ETH/prices?frame=weekly&from=2024-01-01&to=2024-12-31

Response 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

Sample code
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"
  }
]
GET/crypto/list/category

Retrieves all unique category values available in the crypto universe. Filter by asset category.

Examples:

https://api.axionquant.com/crypto/list/category
|

List by Category

Request

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

Response

[
  "algorithmic stablecoins",
  "analytics",
  "asset management",
  "asset-backed tokens",
  "centralized exchange",
  "cryptocurrencies",
  "dao",
  "data management and ai",
  "decentralized exchange",
  "defi",
  "depin",
  "derivatives",
  "developments tools",
  "distributed computing and storage",
  "e-commerce",
  "education",
  "energy",
  "enterprise solutions",
  "fan tokens",
  "fundraising",
  "gambling",
  "gaming",
  "health",
  "identity",
  "insurance",
  "internet of things",
  "interoperability",
  "iso 20022",
  "jobs",
  "layer 1",
  "lending and borrowing",
  "loyalty and rewards",
  "made in america",
  "made in china",
  "marketing",
  "marketplace",
  "memes",
  "move to earn",
  "nfts and collectibles",
  "oracles",
  "payments",
  "prediction markets",
  "privacy",
  "real estate",
  "real-world assets",
  "rehypothecated assets",
  "scaling",
  "smart contract platforms",
  "social media and content",
  "sports",
  "stablecoins",
  "transport",
  "web3",
  "wrapped tokens"
]
GET/crypto/list/rating

Retrieves all unique rating values available in the crypto universe. Filter by analyst rating.

Examples:

https://api.axionquant.com/crypto/list/rating
|

List by Rating

Request

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

Response

[
  "buy",
  "neutral",
  "sell",
  "strongbuy",
  "strongsell"
]