Naar de inhoud
GET /v1/meta

Endpoints, groups & source

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "sample": {
            "nifty50": 23622.9
        },
        "source": "NSE India public site API (nseindia.com/api), keyless",
        "service": "nseindia-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/index": "A single index by name (name).",
            "GET /v1/movers": "Top gainers or losers (direction, group).",
            "GET /v1/indices": "Live value of every NSE index.",
            "GET /v1/most-active": "Most-active securities (by=value|volume).",
            "GET /v1/market-status": "Open/close status of each market segment."
        },
        "description": "Live market data from the National Stock Exchange of India with no key: every NSE index value (NIFTY 50, BANK NIFTY…), market-segment open/close status, the day's top gainers and losers, the most-active securities by value or volume, and a single index lookup. The Indian-equities / stock-index / market-movers layer for trading dashboards, screeners and fintech. Distinct from US-stock and FX-rate readers. Live, short cache only.",
        "mover_groups": [
            "NIFTY",
            "BANKNIFTY",
            "NIFTYNEXT50",
            "SecGtr20",
            "SecLwr20",
            "FOSec",
            "allSec"
        ],
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:19.221Z",
        "request_id": "ced33426-ccc4-457e-9209-c502e646e10d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}