Get Crypto Metrics Screener Time Range
OpenAPI JSON Spec Retrieve tokens filtered by metrics over a time range. Returns tokens matching the specified metric type and value range, grouped by date.
Overview: This endpoint filters tokens based on various metrics over a specified time range. Results are grouped by date (YYYY-MM-DD format).
Valuation Metrics (2 metrics):
MARKET_CAP: Market CapitalizationFDV: Fully Diluted Valuation
Volume Metrics (1 metric):
SHARES_VOLUME: Trading volume (shares)
Price Change Metrics (9 metrics):
PRICE_CHANGE_1D: Price change over 1 day (percentage)PRICE_CHANGE_1W: Price change over 1 week (percentage)PRICE_CHANGE_1M: Price change over 1 month (percentage)PRICE_CHANGE_3M: Price change over 3 months (percentage)PRICE_CHANGE_6M: Price change over 6 months (percentage)PRICE_CHANGE_YTD: Price change year-to-date (percentage)PRICE_CHANGE_1Y: Price change over 1 year (percentage)PRICE_CHANGE_3Y: Price change over 3 years (percentage)PRICE_CHANGE_5Y: Price change over 5 years (percentage)
Moving Averages - Simple Moving Average (MA) (6 metrics):
MA_5: 5-day Simple Moving AverageMA_10: 10-day Simple Moving AverageMA_20: 20-day Simple Moving AverageMA_60: 60-day Simple Moving AverageMA_120: 120-day Simple Moving AverageMA_200: 200-day Simple Moving Average
Moving Averages - Exponential Moving Average (EMA) (6 metrics):
EMA_5: 5-day Exponential Moving AverageEMA_10: 10-day Exponential Moving AverageEMA_20: 20-day Exponential Moving AverageEMA_60: 60-day Exponential Moving AverageEMA_120: 120-day Exponential Moving AverageEMA_200: 200-day Exponential Moving Average
Momentum Indicators (1 metric):
RSI_14: Relative Strength Index (14-period) - Momentum oscillator that measures speed and magnitude of price changes (typically ranges from 0 to 100)
MACD (Moving Average Convergence Divergence) Components (3 metrics):
MACD_DIF: MACD Line (DIF) - Difference between 12-day EMA and 26-day EMAMACD_DEA: Signal Line (DEA) - 9-day EMA of the MACD lineMACD_HIST: MACD Histogram - Difference between MACD line and signal line
Bollinger Bands Components (3 metrics):
BOLLINGER_UPPER: Upper Bollinger Band - Upper band of Bollinger Bands (20-day MA + 2 standard deviations)BOLLINGER_MID: Middle Bollinger Band - 20-day Simple Moving AverageBOLLINGER_LOWER: Lower Bollinger Band - Lower band of Bollinger Bands (20-day MA - 2 standard deviations)
Other Indicators (4 metrics):
BETA: Beta - Measure of token’s volatility relative to the crypto market. Beta of 1 means token moves with marketVOLATILITY_20: Volatility (20-period) - Standard deviation of returns over 20 periods (annualized)VOLATILITY_60: Volatility (60-period) - Standard deviation of returns over 60 periods (annualized)VOLATILITY_90: Volatility (90-period) - Standard deviation of returns over 90 periods (annualized)
Filtering:
- Use
range_minto filter for tokens where the metric value is greater than or equal to the minimum - Use
range_maxto filter for tokens where the metric value is less than or equal to the maximum - Both filters can be used together to create a range
- If neither filter is provided, all tokens matching the metric type will be returned
Limit Parameter:
- Use
limitto further limit the maximum number of results returned per day (optional, defaults to no limit) - This is useful for pagination or when you only need the top N results per day
Response Format: Returns an array of date-grouped data items. Each item contains a date (YYYY-MM-DD format) and an array of tokens with their symbol, snapshot time (ISO 8601 format), metric type, and metric value for that date.
Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Start time (Unix timestamp in seconds, UTC)
End time (Unix timestamp in seconds, UTC)
Metric type. See description for valid values.
Minimum value filter (optional). Returns only tokens where metric value >= range_min
Maximum value filter (optional). Returns only tokens where metric value <= range_max
Sort order (optional). Valid values: ASC (ascending), DESC (descending). Defaults to DESC
Maximum number of results per day (optional, defaults to no limit)

