/v1/search
Find a scrip code by company name
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/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bse-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bse-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Search BSE-listed companies by name — each match with its scrip code, company name and ISIN. Pass q (e.g. reliance, tata). Use a returned scrip_code with the quote and company endpoints.",
"count": 8,
"query": "reliance",
"source": "BSE India",
"results": [
{
"isin": "INE002A01018",
"name": "RELIANCE INDUSTRIES LTD",
"scrip_code": "500325"
},
{
"isin": "INE036A01016",
"name": "RELIANCE INFRASTRUCTURE LTD",
"scrip_code": "500390"
},
{
"isin": "INE750D01016",
"name": "RELIANCE CHEMOTEX INDUSTRIES LTD",
"scrip_code": "503162"
},
{
"isin": "INE046A01015",
"name": "RELIANCE INDUSTRIAL INFRASTRUCTURE LTD",
"scrip_code": "523445"
},
{
"isin": "INE330H01018",
"name": "RELIANCE COMMUNICATIONS LTD",
"scrip_code": "532712"
},
{
"isin": "INE614G01033",
"name": "RELIANCE POWER LTD",
"scrip_code": "532939"
},
{
"isin": "INE217K01011",
"name": "RELIANCE HOME FINANCE LTD",
"scrip_code": "540709"
},
{
"isin": "INE002A20018",
"name": "RELIANCE INDUSTRIES LTD",
"scrip_code": "750634"
}
]
},
"meta": {
"timestamp": "2026-06-15T02:11:17.390Z",
"request_id": "699f9043-52a8-468f-bc5a-a9201d204759"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}