/v1/highlow
52-week high / low 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/highlow" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bse-api/v1/highlow", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bse-api/v1/highlow");
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/highlow",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The 52-week high and low for one BSE stock, with the dates each was set. Pass scrip (the BSE scrip code, e.g. 500325).",
"source": "BSE India",
"scrip_code": "500325",
"week52_low": null,
"week52_high": null,
"week52_low_date": null,
"week52_high_date": null
},
"meta": {
"timestamp": "2026-06-15T02:11:15.993Z",
"request_id": "1347c1d8-4d49-4503-9e08-e6dd38ce6214"
},
"status": "ok",
"message": "52-week high/low retrieved successfully",
"success": true
}