/v1/meta
Endpoints & source
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}