/v1/company
Company master detail
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/company" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bse-api/v1/company", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bse-api/v1/company");
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/company",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"isin": "INE467B01029",
"note": "The company master detail for one BSE-listed stock — its security id, ISIN, industry, trading group, index membership and face value. Pass scrip (the BSE scrip code, e.g. 532540 for TCS).",
"group": "A",
"index": "BSE SENSEX",
"source": "BSE India",
"industry": "Computers - Software & Consulting",
"face_value": 1,
"scrip_code": "532540",
"group_index": "A / BSE SENSEX",
"security_id": "TCS"
},
"meta": {
"timestamp": "2026-06-15T02:11:15.761Z",
"request_id": "808b062c-bfba-4c5d-9a8d-3aee7ed36269"
},
"status": "ok",
"message": "Company detail retrieved successfully",
"success": true
}