/v1/orderbook
Live limit-order book with depth
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/firi-api/v1/orderbook" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/firi-api/v1/orderbook", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/firi-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/firi-api/v1/orderbook",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"asks": [
{
"price": 607211.18,
"amount": 0.12653557
},
{
"price": 607211.19,
"amount": 1.61691537
},
{
"price": 607217.13,
"amount": 0.03746468
},
{
"price": 618320.56,
"amount": 1.20366991
},
{
"price": 618320.57,
"amount": 8.228e-5
},
{
"price": 618724.68,
"amount": 0.03602411
},
{
"price": 620000,
"amount": 0.00032975
},
{
"price": 627736.62,
"amount": 8.104e-5
},
{
"price": 630000,
"amount": 0.09595252
},
{
"price": 635000,
"amount": 2.0e-5
},
{
"price": 637296.06,
"amount": 7.983e-5
},
{
"price": 640000,
"amount": 2.0e-5
},
{
"price": 645000,
"amount": 2.0e-5
},
{
"price": 647001.08,
"amount": 7.863e-5
},
{
"price": 650000,
"amount": 2.0e-5
},
{
"price": 655000,
"amount": 2.0e-5
},
{
"price": 656853.88,
"amount": 7.745e-5
},
{
"price": 657500,
"amount": 2.0e-5
},
{
"price": 660000,
"amount": 2.0e-5
},
{
"price": 662500,
"amount": 2.0e-5
}
],
"bids": [
{
"price": 601001.15,
"amount": 0.38713278
},
{
"price": 601000.97,
"amount": 0.3364788
},
{
"price": 601000.79,
"amount": 0.38713301
},
{
"price": 600446.14,
"amount": 0.33472821
},
{
"price": 600446.13,
"amount": 0.04913014
},
{
"price": 600213.69,
"amount": 7.11836711
},
{
"price": 600213.53,
"amount": 0.08999288
},
{
"price": 598986.4,
"amount": 0.05240327
},
{
"price": 595316.44,
"amount": 0.08188571
},
{
"price": 594995.23,
…