Μετάβαση στο περιεχόμενο
GET /v1/large

Large aggressive prints (whales)

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/orderflow-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "single aggressive aggregated trades at or above min_notional (default $100,000); side is the aggressor.",
        "source": "Binance",
        "symbol": "BTCUSDT",
        "largest": [
            {
                "qty": 2.98439,
                "side": "buy",
                "time": 1781228423554,
                "price": 63342.46,
                "notional_usd": 189038.6
            },
            {
                "qty": 2.76,
                "side": "buy",
                "time": 1781228423552,
                "price": 63342.46,
                "notional_usd": 174825.19
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63369.53,
                "notional_usd": 125736.55
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63364.25,
                "notional_usd": 125726.08
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63361.54,
                "notional_usd": 125720.7
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63358.99,
                "notional_usd": 125715.64
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63355.92,
                "notional_usd": 125709.55
            },
            {
                "qty": 1.98418,
                "side": "buy",
                "time": 1781228389649,
                "price": 63352.87,
                "notional_usd": 125703.5
            }
        ],
        "large_count": 8,
        "min_notional": 100000,
        "trades_scanned": 2000,
        "large_buy_quote": 1118175.81,
        "large_sell_quote": 0
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:14.216Z",
        "request_id": "45e3859e-6575-4578-b68b-b40d98c98755"
    },
    "status": "ok",
    "message": "Large trades retrieved successfully",
    "success": true
}