Skip to content
GET /v1/quote

Live quote for a stock

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bse-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}