Vai al contenuto
GET /v1/board

Live order book — mid price and top bids/asks

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/bitflyer-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "asks": [
            {
                "size": 0.3401,
                "price": 9864674
            },
            {
                "size": 0.2113,
                "price": 9865712
            },
            {
                "size": 0.02,
                "price": 9866240
            },
            {
                "size": 0.25380877,
                "price": 9866241
            },
            {
                "size": 0.02,
                "price": 9866398
            },
            {
                "size": 0.6544,
                "price": 9866703
            },
            {
                "size": 0.02,
                "price": 9867792
            },
            {
                "size": 0.052488,
                "price": 9867793
            },
            {
                "size": 0.0864981,
                "price": 9867995
            },
            {
                "size": 0.02665051,
                "price": 9868384
            },
            {
                "size": 0.0050187,
                "price": 9868691
            },
            {
                "size": 1.35369856,
                "price": 9869180
            },
            {
                "size": 0.6648,
                "price": 9869181
            },
            {
                "size": 0.6,
                "price": 9870348
            },
            {
                "size": 0.7686,
                "price": 9871659
            },
            {
                "size": 1.189881,
                "price": 9873447
            },
            {
                "size": 1.189881,
                "price": 9873757
            },
            {
                "size": 0.054239,
                "price": 9873809
            },
            {
                "size": 0.6494,
                "price": 9874137
            },
            {
                "size": 0.00100197,
                "price": 9880000
            }
        ],
        "bids": [
            {
                "size": 0.0836242,
                "price": 9856332
            },
            {
                "size": 0.0185904,
                "price": 9856331
            },
            {
                "size": 0.1628,
                "price": 9856329
            },
            {
                "size": 0.0175248,
                "price": 9855995
            },
            {
                "size": 0.0186192,
                "price": 9855980
            },
            {
                "size": 0.5,
                "price": 9854917
            },
            {
                "size": 0.018432,
                "price": 9854662
            },
            {
                "size": 0.25578063,
                "price": 9854408
            },
            {
                "size": 0.001,
                "price": 9854178
            },
            {
                "size": 1.58939802,
                "price": 9853003
            },
            {
                "size": 0.052488,
                "price": 985300
…