获取盈利预测
获取盈利预测
描述
获取指定股票的个股盈利预测数据。
HTTP请求
- GET /api/v3/reality/market/earnings-forecast
- 限频规则: 1次/秒/IP
- 权限: 无
请求示例
curl "https://api.bitget.com/api/v3/reality/market/earnings-forecast?code=MU" \
-H "locale:zh-CN" \
-H "Content-Type: application/json"
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| code | String | 是 | 公司代码 如 MU |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"fiscalYear": "2026",
"publicationDeadline": "2026-09-30",
"isActual": false,
"revenue": "35000",
"ebit": "9000",
"netIncomeParent": "7500",
"eps": "8.50",
"bps": "45.20",
"cfps": "12.30",
"roe": "0.18",
"roa": "0.10",
"currency": "USD"
}
}
返回参数
| 返回字段 | 参数类型 | 字段说明 |
|---|---|---|
| fiscalYear | String | 年度 |
| publicationDeadline | String | 公布截止日期 |
| isActual | Boolean | 是否实际值true 实际值false 预测值 |
| revenue | String | 营业收入 单位为百万美元 |
| ebit | String | 息税前利润 单位为百万美元 |
| netIncomeParent | String | 归属母公司股东的净利润 单位为百万美元 |
| eps | String | 每股收益 |
| bps | String | 每股净资产 |
| cfps | String | 每股现金流 |
| roe | String | 净资产收益率 |
| roa | String | 总资产收益率 |
| currency | String | 货币 |