Naar de inhoud
GET /v1/screener

Rank a basket by trend alignment

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptomomentum-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}