ReferenceCompetitors

Competitors - Fincrux Indian stock market API documentation

# Competitors --- Fetches peer / competitor companies for a stock, including each competitor's instrument key, business profile, sector, and sector market capitalisation (INR and USD). ## Rate Limits…

Competitors

Fetches peer / competitor companies for a stock, including each competitor's instrument key, business profile, sector, and sector market capitalisation (INR and USD).


Rate Limits

PlanRate Limit
Hobby5 requests / day
Plus10 requests / minute

Request

GET /api/competitors/{company_symbol}

ParameterDescriptionPriorityType
api_keyUser Generated API Key. Generate Hererequiredstring
force_updateBypass cache and refresh from the data provider
Default false
optionalboolean

Response

FieldDescriptionType
successIndicates if the API call was successful or notstring
companyName of the companystring
trading_symbolNSE / BSE trading symbolstring
isinISIN used to resolve competitorsstring
dataList of competitor company profilesarray
data.instrument_keyInstrument key, e.g. NSE_EQ|INE242A01010string
data.company_profileBrief description of the competitor's businessstring
data.sectorSector the competitor belongs tostring
data.sector_market_cap_inrSector market capitalisation in INRobject
data.sector_market_cap_inr.valueNumeric market cap value in croredecimal
data.sector_market_cap_inr.unitUnit of the value (crore)string
data.sector_market_cap_inr.formattedHuman-readable value, e.g. 131,391.64 Crstring
data.sector_market_cap_usdSector market capitalisation in USDobject
data.sector_market_cap_usd.valueNumeric market cap valuedecimal
data.sector_market_cap_usd.unitUnit of the value (billion / million)string
data.sector_market_cap_usd.formattedHuman-readable value, e.g. $14.60Bstring

Example

curl -X GET \ -H "Content-Type: application/json" \ --url 'https://api.fincrux.org/api/competitors/RELIANCE?api_key={api_key}'
{ "success": "true", "company": "Reliance Industries Limited", "trading_symbol": "RELIANCE", "isin": "INE002A01018", "data": [ { "instrument_key": "NSE_EQ|INE242A01010", "company_profile": "Indian Oil Corporation Limited is an India-based oil company...", "sector": "Refineries", "sector_market_cap_inr": { "value": 204334.32, "unit": "crore", "formatted": "204,334.32 Cr" }, "sector_market_cap_usd": { "value": 22.7, "unit": "billion", "formatted": "$22.70B" } } ] }

Designed & Shipped by Harshit Bansal