Skip to content

晨星报告

GET /v1/quote/{symbol}/f10/morningstar

获取个股的晨星(Morningstar)综合评级报告,含星级、公允价值、经济护城河、不确定性、资本配置、财务健康等核心评级,以及分析师各维度文字解读。

请求参数

参数类型位置必填说明
symbolstring路径股票代码,如 HK.00700

请求示例

bash
curl "$ip/v1/quote/HK.00700/f10/morningstar" | jq

响应字段

字段类型说明
rating_typeint评级类型。1=定量,2=定性(分析师覆盖)。
star_ratingint晨星星级,1-5。
star_update_timeint星级更新时间,秒级时间戳。
star_update_time_strstring星级更新日期(yyyy-MM-dd)。
fair_valuenumber公允价值估值(报告币种)。
economic_moat_labelstring经济护城河标签:Wide / Narrow / None
economic_moat_typeint经济护城河枚举。1=Wide,2=Narrow,3=None。
uncertainty_labelstring不确定性标签:Low / Medium / High / Very High / Extreme
uncertainty_typeint不确定性枚举。1=Low,2=Medium,3=High,4=Very High,5=Extreme。
capital_allocation_labelstring资本配置标签:Exemplary / Standard / Poor / Not Rated
capital_allocation_typeint资本配置枚举。1=Exemplary,2=Standard,3=Poor,4=Not Rated。
financial_health_labelstring财务健康标签:Strong / Moderate / Weak
financial_health_typeint财务健康枚举。1=Strong,2=Moderate,3=Weak。
analyst_report_by_linearray<string>分析师署名。
analyst_report_update_timeint分析师报告更新时间,秒级时间戳。
analyst_report_update_time_strstring分析师报告更新日期。
fair_value_contentobject公允价值分析文本,含 contextupdate_timeupdate_time_str
economic_moat_contentobject经济护城河分析文本。
uncertainty_contentobject不确定性分析文本。
capital_allocation_contentobject资本配置分析文本。
financial_health_contentobject财务健康分析文本。
bull_sayarray<object>看多观点列表。
bear_sayarray<object>看空观点列表。
ai_analysisobject晨星 AI 分析,含 summaryanalysis

限制范围

  • 品类:仅正股有晨星评级。ETF / 指数 / 期权 / 期货 / 外汇等返回 no_data。
  • 市场:按标的逐只覆盖,实测有评级数据的市场包括 HK / US / SH / SZ / AU / CA。
  • 未被晨星覆盖的正股同样返回 no_data。

错误码

ret_codeerror.code触发条件处理建议
0成功
-3invalid_parametersymbol 缺失或格式非法校正代码格式后重试
-7invalid_symbol代码格式合法但查不到对应证券核对代码是否存在
-10no_data标的合法但晨星无评级覆盖该标的无晨星报告,无需重试
-2 / -4 / -6internal_error网关内部错误可重试;持续失败请反馈

响应示例

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "rating_type": 2,
    "star_rating": 5,
    "star_update_time": 1780677360,
    "star_update_time_str": "2026-06-06",
    "fair_value": 800,
    "economic_moat_label": "Wide",
    "economic_moat_type": 1,
    "uncertainty_label": "High",
    "uncertainty_type": 3,
    "capital_allocation_label": "Exemplary",
    "capital_allocation_type": 1,
    "analyst_report_by_line": ["Ivan Su"],
    "analyst_report_update_time": 1766457180,
    "analyst_report_update_time_str": "2025-12-23",
    "economic_moat_content": {
      "context": "...",
      "update_time": 1766457180,
      "update_time_str": "2025-12-23"
    },
    "analyst_note_title": {
      "context": "Tencent: From AI Laggard to AI Landlord of the WeChat Ecosystem...",
      "update_time": 1780399942,
      "update_time_str": "2026-06-02"
    },
    "bull_say": [
      { "context": "Several Tencent products remain early in their monetization cycles...", "update_time": 1766457180, "update_time_str": "2025-12-23" }
    ],
    "ai_analysis": {
      "summary": "Morningstar believes that Tencent's current share price is undervalued...",
      "analysis": "**1. Valuation & Rating** ..."
    }
  }
}