获取标的资讯
获取指定股票的资讯列表。
CLI安装 CLI
bash
# Tesla 最新资讯
longbridge news TSLA.US
# Apple 最新资讯
longbridge news AAPL.US
# NVDA 最新资讯
longbridge news NVDA.USSDK Links
Request
| HTTP Method | GET |
| HTTP URL | /v1/content/{symbol}/news |
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | 股票代码,使用 ticker.region 格式,例如:AAPL.US |
Request Example
Response
Response Headers
- Content-Type: application/json
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"items": [
{
"id": "279528757",
"title": "Beats 跨界联动耐克破圈!苹果欲再掀可穿戴消费热潮 耐克押注 "运动科技" 叙事",
"description": "苹果公司旗下的 Beats 与耐克合作推出限量版 Powerbeats Pro 2 耳机,耳机上印有耐克的 Swoosh 标志。该耳机将于 3 月 20 日在线及部分 Apple Store 发售,售价为 250 美元。这是 Beats 首次与外部运动品牌合作,标志着两家公司在品牌和产品生态上的进一步协同。耳机具备实时心率追踪功能,续航时间最长可达 45 小时。",
"url": "https://longbridge.com/news/279528757",
"published_at": "1773805586",
"comments_count": 0,
"likes_count": 0,
"shares_count": 0
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 返回成功 | news_response |
| 500 | 内部错误 | None |
Schemas
news_response
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | 资讯列表 |
| ∟ id | string | true | 资讯 ID |
| ∟ title | string | true | 标题 |
| ∟ description | string | true | 摘要/描述 |
| ∟ url | string | true | 资讯详情链接 |
| ∟ published_at | string | true | 发布时间,Unix 时间戳(秒) |
| ∟ comments_count | int32 | true | 评论数 |
| ∟ likes_count | int32 | true | 点赞数 |
| ∟ shares_count | int32 | true | 分享数 |