Naar de inhoud
GET /v1/orderbook

Live BTC/JPY bid/ask depth

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "asks": [
            {
                "price": 10150501,
                "amount": 0.01
            },
            {
                "price": 10150646,
                "amount": 0.01
            },
            {
                "price": 10150679,
                "amount": 0.02
            },
            {
                "price": 10150837,
                "amount": 0.03
            },
            {
                "price": 10152442,
                "amount": 0.02
            },
            {
                "price": 10152722,
                "amount": 0.01417619
            },
            {
                "price": 10152744,
                "amount": 0.002
            },
            {
                "price": 10152819,
                "amount": 0.002
            },
            {
                "price": 10153105,
                "amount": 0.06422792
            },
            {
                "price": 10153251,
                "amount": 0.05
            },
            {
                "price": 10154518,
                "amount": 0.04447825
            },
            {
                "price": 10156420,
                "amount": 0.001
            },
            {
                "price": 10157050,
                "amount": 0.26916219
            },
            {
                "price": 10159152,
                "amount": 0.05023288
            },
            {
                "price": 10159999,
                "amount": 0.001
            },
            {
                "price": 10161460,
                "amount": 0.00309852
            },
            {
                "price": 10163029,
                "amount": 0.0225
            },
            {
                "price": 10163030,
                "amount": 0.005
            },
            {
                "price": 10163764,
                "amount": 0.002
            },
            {
                "price": 10164625,
                "amount": 0.005
            }
        ],
        "bids": [
            {
                "price": 10148077,
                "amount": 0.00896967
            },
            {
                "price": 10148070,
                "amount": 0.002
            },
            {
                "price": 10148063,
                "amount": 0.01
            },
            {
                "price": 10147763,
                "amount": 0.02
            },
            {
                "price": 10147436,
                "amount": 0.02
            },
            {
                "price": 10147434,
                "amount": 0.1
            },
            {
                "price": 10146835,
                "amount": 0.01417619
            },
            {
                "price": 10146615,
                "amount": 0.01
            },
            {
                "price": 10146571,
                "amount": 0.1
            },
            {
                "price": 10146505,
                "amount": 0.02524595
            },
            {
            
…