跳轉到內容

股票資訊

獲取指定股票的資訊列表。

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分享數