跳转到内容

股票资讯

获取指定股票的资讯列表。

Request

HTTP MethodGET
HTTP URL/v1/content/{symbol}/news

Path Parameters

NameTypeRequiredDescription
symbolstringYES股票代码,使用 ticker.region 格式,例如:APP.US

Response

Response Headers

  • Content-Type: application/json

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "items": [
      {
        "id": "277062200",
        "title": "关于 AppLovin 的市盈率分析",
        "description": "AppLovin Inc.(纳斯达克代码:APP)当前股价为 418.56 美元,反映出 1.42% 的上涨,尽管过去一个月下跌了 24.88%,但过去一年上涨了 31.28%。该公司的市盈率低于软件行业的平均水平 80.91,暗示可能被低估。",
        "url": "https://longbridge.com/news/277062200",
        "published_at": "1750746101",
        "comments_count": 10,
        "likes_count": 25,
        "shares_count": 3
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200返回成功news_response
500内部错误None

Schemas

news_response

NameTypeRequiredDescription
itemsobject[]true资讯列表
∟ idstringtrue资讯 ID
∟ titlestringtrue标题
∟ descriptionstringtrue摘要/描述
∟ urlstringtrue资讯详情链接
∟ published_atstringtrue发布时间,Unix 时间戳(秒)
∟ comments_countint32true评论数
∟ likes_countint32true点赞数
∟ shares_countint32true分享数