GET
/
company
/
get-segments
/
{ticker}
/
Company Revenue and Cost Segments
curl --request GET \
  --url https://api.sectors.app/v1/company/get-segments/{ticker}/ \
  --header 'Authorization: <authorization>'
{
  "symbol": "BUMI.JK",
  "financial_year": 2022,
  "revenue_breakdown": [
    {
      "value": 15733248939797.021,
      "source": "Coal (Export)",
      "target": "Total Revenue"
    }
  ]
}
{
  "symbol": "BUMI.JK",
  "financial_year": 2022,
  "revenue_breakdown": [
    {
      "value": 15733248939797.021,
      "source": "Coal (Export)",
      "target": "Total Revenue"
    }
  ]
}
Authorization
string
required
Authorization header that should be filled with your Sectors Financial API key.

Path

ticker
string
required
Ticker of the company for which the revenue and cost segments are to be retrieved.

Query Parameters

financial_year
integer
Fetch company segment for given financial year.

Response

symbol
string
The ticker of the company.
financial_year
integer
The financial year of the revenue and cost segments.
revenue_breakdown
RevenueBreakdownData[]