Login

Reference

Search Company


Search Company


Allows users to search for companies by their symbols or names. It returns relevant company details, enabling efficient company lookup.


Rate Limits


PlanRate Limit
HobbyUnlimited
PlusUnlimited

Request


GET /api/search/{company_symbol}


Response


FieldDescriptionType
successIndicates if the search was successfulstring
queryThe search query used to find the companystring
results_countThe number of results found for the search queryinteger
search_resultsList of companies matching the search queryarray
search_results.nameName of the company in the search resultsarray
search_results.trading_symbolTrading symbol of the companyarray

Example


curl -X GET \ -H "Content-Type: application/json" \ --url 'https://api.fincrux.org/api/search/RELIANCE'
{ "success": "true", "query": "RELIANCE", "results_count": 7, "search_results": [ { "name": "RELIANCE COMMUNICATIONS L", "trading_symbol": "RCOM" }, { "name": "RELIANCE CHEMOTEX IND LTD", "trading_symbol": "RELCHEMQ" }, { "name": "RELIANCE INDUSTRIES LTD", "trading_symbol": "RELIANCE" }, { "name": "RELIANCE INFRASTRUCTU LTD", "trading_symbol": "RELINFRA" }, { "name": "RELIANCE HOME FINANCE LTD", "trading_symbol": "RHFL" }, { "name": "RELIANCE INDUSTRIAL INFRA", "trading_symbol": "RIIL" }, { "name": "RELIANCE POWER LTD.", "trading_symbol": "RPOWER" } ] }

Designed & Shipped by Harshit Bansal