/v1/screener
Rank a basket by trend alignment
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cryptomomentum-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomomentum-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomomentum-api/v1/screener");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/cryptomomentum-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Coins ranked by multi-timeframe alignment. strongest_uptrends have the most timeframes pointing up; strongest_downtrends the most pointing down. Default basket is the liquid majors; pass coins=BTC,ETH,... to customise.",
"source": "Binance",
"scanned": 5,
"strongest_uptrends": [
{
"d1": 1.75,
"d7": 2.28,
"h1": -0.41,
"d30": -23.84,
"bias": "mixed / choppy",
"coin": "DOGE",
"alignment_score": 0.2
},
{
"d1": 0.9,
"d7": 1.89,
"h1": -0.05,
"d30": -21.15,
"bias": "mixed / choppy",
"coin": "BTC",
"alignment_score": 0.2
},
{
"d1": 1.99,
"d7": 0.68,
"h1": -0.24,
"d30": -21.54,
"bias": "mixed / choppy",
"coin": "XRP",
"alignment_score": 0.2
},
{
"d1": 2.06,
"d7": 0.65,
"h1": -0.48,
"d30": -29.48,
"bias": "mixed / choppy",
"coin": "SOL",
"alignment_score": 0.2
}
],
"strongest_downtrends": [
{
"d1": 1.05,
"d7": -0.04,
"h1": -0.24,
"d30": -27.39,
"bias": "bearish",
"coin": "ETH",
"alignment_score": -0.2
}
]
},
"meta": {
"timestamp": "2026-06-12T10:35:44.681Z",
"request_id": "03827d3d-8724-4e6a-94ee-86c933b80bc6"
},
"status": "ok",
"message": "Screener retrieved successfully",
"success": true
}