Zum Inhalt springen
GET /v1/meta

Endpoints & source

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/bse-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "sample": {
            "reliance_ltp": 1292.75
        },
        "source": "BSE India public site API (api.bseindia.com), keyless",
        "service": "bse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "Live quote for a stock (scrip code).",
            "GET /v1/search": "Find a scrip code by company name (q).",
            "GET /v1/company": "Company master detail (scrip code).",
            "GET /v1/highlow": "52-week high/low (scrip code)."
        },
        "description": "Live individual-stock data from the Bombay Stock Exchange (BSE) with no key: the live quote for any listed stock by its scrip code (last price, day change, open/high/low, previous close), the company master detail (ISIN, industry, group, face value, index membership), a name-to-scrip-code search, and the 52-week high/low. The Indian single-stock / equity-quote / company-lookup layer for trading dashboards, screeners and fintech. Distinct from index-and-movers readers. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:17.477Z",
        "request_id": "b4636b42-0b4e-49bf-836c-dfa03b961604"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}