/v1/meta
Endpoints, groups & source
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}