/v1/depth
Live order book for a symbol
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/aster-api/v1/depth" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aster-api/v1/depth", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aster-api/v1/depth");
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/aster-api/v1/depth",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"asks": [
{
"size": 10.323,
"price": 1740.68
},
{
"size": 49.512,
"price": 1740.7
},
{
"size": 128.672,
"price": 1740.71
},
{
"size": 148.014,
"price": 1740.72
},
{
"size": 21.254,
"price": 1740.76
},
{
"size": 53.842,
"price": 1740.79
},
{
"size": 128.672,
"price": 1740.81
},
{
"size": 14.36,
"price": 1740.87
},
{
"size": 51.881,
"price": 1740.89
},
{
"size": 137.895,
"price": 1740.9
},
{
"size": 44.034,
"price": 1740.97
},
{
"size": 137.915,
"price": 1740.98
},
{
"size": 140.948,
"price": 1741.04
},
{
"size": 58.536,
"price": 1741.11
},
{
"size": 152.895,
"price": 1741.12
},
{
"size": 71.07,
"price": 1741.14
},
{
"size": 0.42,
"price": 1741.15
},
{
"size": 137.895,
"price": 1741.18
},
{
"size": 54.899,
"price": 1741.24
},
{
"size": 137.895,
"price": 1741.25
}
],
"bids": [
{
"size": 16.664,
"price": 1740.67
},
{
"size": 128.672,
"price": 1740.63
},
{
"size": 19.845,
"price": 1740.6
},
{
"size": 41.287,
"price": 1740.57
},
{
"size": 137.895,
"price": 1740.56
},
{
"size": 0.42,
"price": 1740.55
},
{
"size": 0.3,
"price": 1740.54
},
{
"size": 2.872,
"price": 1740.52
},
{
"size": 23.639,
"price": 1740.5
},
{
"size": 138.315,
"price": 1740.49
},
{
"size": 137.895,
"price": 1740.42
},
{
…