Allows users to search for companies by their symbols or names. It returns relevant company details, enabling efficient company lookup.
| Plan | Rate Limit |
|---|---|
| Hobby | Unlimited |
| Plus | Unlimited |
GET /api/search/{company_symbol}
| Field | Description | Type |
|---|---|---|
| success | Indicates if the search was successful | string |
| query | The search query used to find the company | string |
| results_count | The number of results found for the search query | integer |
| search_results | List of companies matching the search query | array |
| search_results.name | Name of the company in the search results | array |
| search_results.trading_symbol | Trading symbol of the company | array |
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" } ] }
Refund Policy