Skip to content
GET /v1/orders

Regional order book

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/eve-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "spread": -0.92,
        "type_id": 34,
        "best_buy": 3.82,
        "top_buys": [
            {
                "price": 3.82,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60004360,
                "volume_remain": 34000000
            },
            {
                "price": 3.82,
                "duration": 90,
                "min_volume": 1,
                "location_id": 1042508032148,
                "volume_remain": 60643419
            },
            {
                "price": 3.82,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60003760,
                "volume_remain": 49000000
            },
            {
                "price": 3.81,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60003760,
                "volume_remain": 58461063
            },
            {
                "price": 3.81,
                "duration": 30,
                "min_volume": 1,
                "location_id": 60003760,
                "volume_remain": 5000000
            },
            {
                "price": 3.8,
                "duration": 90,
                "min_volume": 1,
                "location_id": 1042508032148,
                "volume_remain": 6418770
            },
            {
                "price": 3.8,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60015002,
                "volume_remain": 50000000
            },
            {
                "price": 3.8,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60015002,
                "volume_remain": 12636133
            },
            {
                "price": 3.79,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60003760,
                "volume_remain": 15000000
            },
            {
                "price": 3.77,
                "duration": 7,
                "min_volume": 1,
                "location_id": 60003760,
                "volume_remain": 29696167
            }
        ],
        "best_sell": 2.9,
        "region_id": 10000002,
        "top_sells": [
            {
                "price": 2.9,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60002233,
                "volume_remain": 40638
            },
            {
                "price": 3.2,
                "duration": 90,
                "min_volume": 1,
                "location_id": 60001624,
                "volume_remain": 9593345
            },
            {
                "price": 3.7,
                "duration": 30,
                "min_volume": 1,
                "location_id": 60001876,
                "volume_remain": 1598626
            },
            {
                "price": 3.71,
                "duration": 7,
                "min_v
…