业务分部(历史趋势)
获取上市公司按报告期的历史业务分部收入趋势。
longbridge business-segments AAPL.US --history
longbridge business-segments AAPL.US --history --report qfSDK 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 | 否 | 绝对收入数值 |