Naar de inhoud
GET /v1/list

Headline world board in one call

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 10,
        "indices": [
            {
                "name": "Nikkei 225",
                "as_of": "2026-06-09T02:35:03.000Z",
                "index": "nikkei225",
                "price": 64654.22,
                "change": 629.62,
                "region": "asia",
                "symbol": "^N225",
                "country": "JP",
                "day_low": 63918.96,
                "currency": "JPY",
                "day_high": 65042.43,
                "change_pct": 0.98,
                "week52_low": 37540.2,
                "week52_high": 68786.49,
                "previous_close": 64024.6
            },
            {
                "name": "Nasdaq Composite",
                "as_of": "2026-06-08T21:15:59.000Z",
                "index": "nasdaq",
                "price": 25929.66,
                "change": 220.23,
                "region": "us",
                "symbol": "^IXIC",
                "country": "US",
                "day_low": 25872.68,
                "currency": "USD",
                "day_high": 26179.65,
                "change_pct": 0.86,
                "week52_low": 19334.98,
                "week52_high": 27190.21,
                "previous_close": 25709.43
            },
            {
                "name": "S&P 500",
                "as_of": "2026-06-08T20:56:48.000Z",
                "index": "sp500",
                "price": 7405.73,
                "change": 21.99,
                "region": "us",
                "symbol": "^GSPC",
                "country": "US",
                "day_low": 7395.13,
                "currency": "USD",
                "day_high": 7466.81,
                "change_pct": 0.3,
                "week52_low": 5943.23,
                "week52_high": 7620.9,
                "previous_close": 7383.74
            },
            {
                "name": "FTSE 100",
                "as_of": "2026-06-08T15:35:29.000Z",
                "index": "ftse100",
                "price": 10373.2,
                "change": 5.2,
                "region": "europe",
                "symbol": "^FTSE",
                "country": "GB",
                "day_low": 10319.17,
                "currency": "GBP",
                "day_high": 10409.33,
                "change_pct": 0.05,
                "week52_low": 8707.7,
                "week52_high": 10934.9,
                "previous_close": 10368
            },
            {
                "name": "Euro Stoxx 50",
                "as_of": "2026-06-08T16:00:00.000Z",
                "index": "eurostoxx50",
                "price": 6062.29,
                "change": 0.22,
                "region": "europe",
                "symbol": "^STOXX50E",
                "country": "EU",
                "day_low": 0,
                "currency": "EUR",
                "day_high": 0,
                "change_pct": 0,
                "week52_low": 0,
                "week52_high": 6199.78,
                "previous_close": 6062.07
           
…