Skip to content

经济日历热门

GET /api/v1.0/quote/economic-calendar/hot

获取指定日期的热门推荐经济数据列表(按重要性排序)。返回当天有公布的重大经济指标(如 CPI、GDP、非农就业、央行利率决议等),包含前值、预测值、公布值、星级重要度。

适用于:经济日历首页热门推荐、每日重大数据提醒、投资决策辅助。

请求参数

参数类型位置必填默认说明
limitintquery10每页条数,范围 1~20
next_keystringquery""翻页游标,首页留空;回传上一页 pagination.next_key 续翻
datestringquery(当天)查询日期,格式 yyyyMMdd,例 20260618
timezonestringqueryAsia/Shanghai时间对应时区,例 America/New_York

请求示例

bash
curl -s "https://webapi.moomoo.com/api/v1.0/quote/economic-calendar/hot?limit=5&date=20260618" | jq

响应字段

返回 data[],每元素一条经济数据。

字段类型说明
event_textstring事件内容,例 美国至6月17日美联储利率决定(上限)
previousstring前值,例 3.75
predictivestring预测值(共识预期),例 3.75
announcestring公布值(实际值),尚未公布时为空串
starint重要性星级,1~5(5 = 最重要,如央行利率决议)
event_timeint64事件发布时间,秒级时间戳
countrystring地区/国家,例 美国日本
currencystring币种;可能为 null
unitstring单位,例 %万人;可能为 null
unique_idstring唯一键,例 calendar_economic:103384299;可能为 null
detail_urlstring详情跳转链接

限制范围

维度支持说明
数据范围当天按热度排序的经济数据仅含当天有发布计划的指标;非交易日或无重大数据日返回空列表

当查询日期无热门数据时(非交易日、无重大数据发布),返回 ret_code=0data=[]pagination.has_more=false

错误码

ret_codeerror.code触发条件处理建议
0成功(含无数据的空列表)data 长度判断是否有数据
-3invalid_parameterlimit 不在 1~20 范围校正参数后重试
-4internal_error后端返回业务错误重试;持续失败请联系网关侧

响应示例

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": [
    {
      "announce": "3.75%",
      "country": "美国",
      "currency": "美国",
      "detail_url": "https://news.moomoo.com/new-calendar/detail?show_bottom_bar=1&indicatorId=168",
      "event_text": "美国至6月17日美联储利率决定(上限)",
      "event_time": 1781719200,
      "predictive": "3.75%",
      "previous": "3.75%",
      "star": 5,
      "unique_id": "calendar_economic:103384299",
      "unit": "%"
    }
  ],
  "pagination": {
    "has_more": false,
    "next_key": "-1"
  }
}