/v1/quote
Live quote for a stock
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/bse-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bse-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bse-api/v1/quote");
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/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"low": 1262.1,
"high": 1297.45,
"name": "Reliance Industries Ltd",
"note": "The live BSE quote for one listed stock by its scrip code — last price, day change (absolute and percent), open/high/low and previous close. Pass scrip (the BSE scrip code, e.g. 500325 for Reliance). Use /v1/search to find a code by name.",
"open": 1278.95,
"as_on": "12 Jun 26 | 16:00",
"change": 30.15,
"source": "BSE India",
"category": "Listed",
"last_price": 1292.75,
"scrip_code": "500325",
"short_name": "reliance",
"percent_change": 2.39,
"previous_close": 1262.6
},
"meta": {
"timestamp": "2026-06-15T02:11:17.148Z",
"request_id": "b0b1037b-72ac-4c52-9c68-676852f2a628"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}