Fetches detailed financial data for a specific company, including quarterly and annual reports, profit & loss, and balance sheets.
| Plan | Rate Limit |
|---|---|
| Hobby | 5 requests / day |
| Plus | 10 requests / minute |
Note: The force_update flag is limited to 5 requests per day.
GET /api/financials/{company_symbol}
| Parameter | Description | Priority | Type |
|---|---|---|---|
| api_key | User Generated API Key. Generate Here | required | string |
| force_update Possible Values true, false | Forcefully scrapes latest data from Screener | optional | boolean |
| Field | Description | Type |
|---|---|---|
| success | Indicates if the API call was successful or not | string |
| company | Name of the company | string |
| trading_symbol | Unique stock symbol of the company | string |
| data | Contains detailed financial information | object |
| data.about | Brief description of the company | string |
| data.top_ratios | Key financial ratios of the company | object |
| data.quarterly_results | Quarterly financial performance data | array |
| data.profit_and_loss | Profit and loss statement | array |
| data.balance_sheet | Company’s balance sheet information | array |
| data.cash_flows | Cash flow statement | array |
| data.ratios | Financial ratios of the company | array |
| data.shareholding_quarterly | Quarterly shareholding details | array |
| data.shareholding_yearly | Yearly shareholding details | array |
| data.last_updated_at | Timestamp of when the data was last updated | string |
curl -X GET \ -H "Content-Type: application/json" \ --url 'https://api.fincrux.org/api/financials/RELIANCE?api_key={api_key}'
{ "success": "true", "company": "RELIANCE INDUSTRIES LTD", "trading_symbol": "RELIANCE", "data": { "about": "Reliance was founded by Dhirubhai Ambani and is now promoted and...", "top_ratios": { "Market Cap": "₹16,86,264Cr.", "Current Price": "₹1,246", "High / Low": "₹1,609/1,202", "Stock P/E": "47.7", "Book Value": "₹387", "Dividend Yield": "0.40%", "ROCE": "9.60%", "ROE": "8.42%", "Face Value": "₹10.0" }, "quaterly_results": [], "profit_and_loss": [], "balance_sheet": [], "cash_flows": [], "ratios": [], "shareholding_quarterly": [], "shareholding_yearly": [], "last_updated_at": "2025-02-04T02:19:47.015264" } }
Refund Policy