/v1/highlow
52-week high / low for a stock
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}