業務分部(歷史趨勢)
獲取上市公司按報告期的歷史業務分部收入趨勢。
SDK Links
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 證券代碼,例如 AAPL.US |
| report | string | 否 | 報告類型:qf(季報)/ saf(半年報)/ af(年報) |
| cate | string | 否 | 分部類別過濾 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"historical": [
{
"date": "20260331",
"total": "124300000000",
"currency": "USD",
"business": [
{"name": "美洲", "percent": "40.80", "value": "31968000000"},
{"name": "欧洲", "percent": "23.64", "value": "18521000000"},
{"name": "大中华区", "percent": "20.72", "value": "16233000000"}
],
"regionals": []
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | BusinessSegmentsHistoryResponse |
| 400 | 請求錯誤 | None |
Schemas
BusinessSegmentsHistoryResponse
| Name | Type | Required | Description |
|---|---|---|---|
| historical | object[] | 否 | 歷史報告期列表 |
| ∟ date | string | 否 | 報告期,格式 YYYYMMDD,例如 20260331 |
| ∟ total | string | 否 | 當期總收入 |
| ∟ currency | string | 否 | 貨幣代碼 |
| ∟ business | object[] | 否 | 業務分部列表 |
| ∟ ∟ name | string | 否 | 業務分部名稱 |
| ∟ ∟ percent | string | 否 | 收入佔比(百分比,例如 40.80) |
| ∟ ∟ value | string | 否 | 絕對收入數值 |
| ∟ regionals | object[] | 否 | 地區分部列表(當前通常為空數組) |
| ∟ ∟ name | string | 否 | 地區名稱 |
| ∟ ∟ percent | string | 否 | 收入佔比(百分比) |
| ∟ ∟ value | string | 否 | 絕對收入數值 |