获取标的社区讨论
获取指定股票的讨论列表。
CLI安装 CLI
bash
# Tesla 社区讨论帖子
longbridge topics TSLA.US
# Apple 社区讨论帖子
longbridge topics AAPL.US
# NVDA 社区讨论帖子
longbridge topics NVDA.USSDK Links
Request
| HTTP Method | GET |
| HTTP URL | /v1/content/{symbol}/topics |
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": "39304657",
"title": "英伟达 GTC 备受关注;阿里 "Token 战略" 再加码|今日重要消息回顾",
"description": "0317 |海豚君重点关注:🐬 个股 1、[st]ST/US/NVDA#英伟达.US[/st] 英伟达 GTC 2026 大会正式开幕,英伟达创始人兼 CEO 黄仁勋发表了主题演讲。宣布,其下一代 Vera Rubin 架构将推出专为空间轨道数据中心设计的 Vera Rubin Space Module,性能比 H100 提升 25 倍。同时宣布与 Groq 合作开发新型 LPU 芯片...",
"url": "https://longbridge.com/topics/39304657",
"published_at": "1773736144",
"comments_count": 1,
"likes_count": 7,
"shares_count": 4
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 返回成功 | topics_response |
| 500 | 内部错误 | None |
Schemas
topics_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 | 分享数 |