curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"date": "2024-01-15",
"metric": "MARKET_CAP",
"snapshot_time": 1705276800,
"symbol": "BTC",
"value": 100000000
}
],
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Get Crypto Metrics Screener
OpenAPI JSON Spec Retrieve tokens filtered by metrics at a specific snapshot time. Returns tokens matching the specified metric type and value range.
Overview: This endpoint filters tokens based on various metrics. The snapshot parameter is a Unix timestamp (seconds) that will be used directly for querying data.
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
Response Format: Returns an array of tokens with their symbol, snapshot time (ISO 8601 format), metric type, and metric value.
curl --request GET \
--url https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics \
--header 'X-API-Key: <api-key>'import requests
url = "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-tools.prd.arrays.org/api/v1/crypto/screener/metrics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"date": "2024-01-15",
"metric": "MARKET_CAP",
"snapshot_time": 1705276800,
"symbol": "BTC",
"value": 100000000
}
],
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}{
"data": "<unknown>",
"error": {
"code": "RESOURCE_NOT_FOUND",
"details": [
{
"field": "<string>",
"got": "<string>",
"reason": "<string>"
}
],
"docs_url": "<string>",
"examples": [
"<string>"
],
"hint": "<string>",
"message": "The requested resource was not found.",
"suggestions": [
"<string>"
]
},
"metadata": "<unknown>",
"pagination": "<unknown>",
"request_id": "<string>",
"success": true
}Authorizations
API Key authentication. Example: "your-api-key-here"
Query Parameters
Snapshot time (Unix timestamp in seconds)
Metric type. See description for valid values.
Minimum value filter
Maximum value filter
Sort order. Valid values: ASC, DESC. Defaults to DESC

