Skip to content
GET /v1/meta

Service metadata and full index list

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/indices-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "source": "Yahoo Finance public chart API (live)",
        "indices": {
            "aex": "AEX",
            "dax": "DAX",
            "dow": "Dow Jones Industrial Average",
            "smi": "Swiss Market Index",
            "tsx": "S&P/TSX Composite",
            "vix": "CBOE Volatility Index",
            "cac40": "CAC 40",
            "kospi": "KOSPI",
            "sp500": "S&P 500",
            "asx200": "S&P/ASX 200",
            "ibex35": "IBEX 35",
            "nasdaq": "Nasdaq Composite",
            "sensex": "BSE Sensex",
            "bovespa": "Bovespa",
            "ftse100": "FTSE 100",
            "hangseng": "Hang Seng",
            "shanghai": "SSE Composite",
            "nikkei225": "Nikkei 225",
            "eurostoxx50": "Euro Stoxx 50",
            "russell2000": "Russell 2000"
        },
        "regions": [
            "us",
            "europe",
            "asia",
            "americas"
        ],
        "service": "indices-api",
        "endpoints": {
            "GET /v1/list": "The headline world board in one call.",
            "GET /v1/meta": "This document (with the full index list).",
            "GET /v1/index": "One index quote (index=sp500|dax|nikkei225|… or aliases like spx, ftse).",
            "GET /v1/region": "A regional board ranked by day change (region=us|europe|asia|americas)."
        },
        "description": "Live world stock-index levels from Yahoo Finance: for any index, the current level, previous close, day change (absolute and percent), day high/low and 52-week high/low in its own currency. Look one up, pull a regional board (US, Europe, Asia, Americas), or get the headline world board. Live, no key. Distinct from S&P 500 / Nasdaq constituent-directory APIs — this is the live index level, not the member list.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:35.668Z",
        "request_id": "82f1e767-13d6-4537-8508-b4b9f85e2b6d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}