Company
Revenue Segmentation
Get Revenue by Product Segment
Fetches a breakdown of a company's revenue by product segment for a given stock symbol, optionally filtered by period (annual/quarter).
get/company/revenue-segmentation/product/{symbol}
Path parameters
symbolstring required
The stock symbol of the company (e.g., AAPL).
Query parameters
period'annual' | 'quarter'
The period of the segmentation data (annual or quarter). Defaults to annual.
structure'flat' | 'hierarchical'
The structure of the response (flat or hierarchical). Defaults to flat.
Response
Successful response with revenue segmentation data by product.
Example response
[
{
"date": "2023-09-30",
"symbol": "AAPL",
"iphone": 200583000000,
"mac": 29357000000,
"ipad": 28300000000,
"wearables-home-and-accessories": 39845000000,
"services": 85200000000
}
]