Zum Inhalt springen
GET /v1/flow

Order flow, delta & CVD for a pair

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/orderflow-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/orderflow-api/v1/flow" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/orderflow-api/v1/flow", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/orderflow-api/v1/flow");
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/orderflow-api/v1/flow",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "delta_quote (the CVD over the window) is taker-buy minus taker-sell quote volume; positive = net aggressive buying. Up to 5000 recent trades scanned (trades=N).",
        "source": "Binance",
        "symbol": "BTCUSDT",
        "pressure": "balanced",
        "cvd_quote": -42965.6,
        "buy_trades": 1066,
        "delta_base": -0.6786,
        "last_price": 63354.69,
        "delta_quote": -42965.6,
        "sell_trades": 934,
        "buy_sell_ratio": 0.9824,
        "taker_buy_base": 37.98445,
        "trades_scanned": 2000,
        "window_seconds": 338.4,
        "taker_buy_quote": 2406493.72,
        "taker_sell_base": 38.66305,
        "buy_volume_share": 0.4956,
        "taker_sell_quote": 2449459.32
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:13.615Z",
        "request_id": "ecd0bc1c-c7d5-4b42-8019-04739c368b01"
    },
    "status": "ok",
    "message": "Flow retrieved successfully",
    "success": true
}