Naar de inhoud
GET /v1/highlow

52-week high / low for a stock

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bse-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}