業務分部(當前期)
獲取上市公司當前報告期的業務分部收入佔比。
SDK Links
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 證券代碼,例如 AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"date": "20260331",
"total": "124300000000",
"currency": "USD",
"business": [
{"name": "iPhone", "percent": "56.19"},
{"name": "Services", "percent": "21.96"},
{"name": "Mac", "percent": "8.04"},
{"name": "iPad", "percent": "7.00"},
{"name": "Wearables", "percent": "6.81"}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | BusinessSegmentsResponse |
| 400 | 請求錯誤 | None |
Schemas
BusinessSegmentsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| date | string | 否 | 報告期,格式 YYYYMMDD,例如 20260331 |
| total | string | 否 | 當期總收入 |
| currency | string | 否 | 貨幣代碼,例如 USD |
| business | object[] | 否 | 業務分部列表 |
| ∟ name | string | 否 | 業務分部名稱 |
| ∟ percent | string | 否 | 收入佔比(百分比,例如 40.56) |