Get Community Topics by Symbol
Get the topic/discussion list for a specified security.
CLIInstall CLI
bash
# community discussion topics for Tesla
longbridge topics TSLA.US
# community discussion topics for Apple
longbridge topics AAPL.US
# community discussion topics for 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 | Stock symbol, use ticker.region format, e.g. AAPL.US |
Request Example
Response
Response Headers
- Content-Type: application/json
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"items": [
{
"id": "39304657",
"title": "NVDA GTC in focus; Alibaba 'Token strategy' ramps up | Daily News Recap",
"description": "0317 | Dolphin Research Focus: 🐬 Stock #1, $NVIDIA(NVDA.US) — NVIDIA's GTC 2026 officially kicked off, and founder & CEO Jensen Huang delivered the keynote.He announced a Vera Rubin Space Module under the next-gen Vera Rubin architecture, designed for orbital data centers, delivering 25x performance vs. H100.He also unveiled a partnership with Groq to co-develop new LPU chips...",
"url": "https://longbridge.com/topics/39304657",
"published_at": "1773736144",
"comments_count": 1,
"likes_count": 7,
"shares_count": 4
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | topics_response |
| 500 | Internal error | None |
Schemas
topics_response
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | Topic list |
| ∟ id | string | true | Topic ID |
| ∟ title | string | true | Title |
| ∟ description | string | true | Summary/description |
| ∟ url | string | true | Detail page URL |
| ∟ published_at | string | true | Published time, Unix timestamp (seconds) |
| ∟ comments_count | int32 | true | Comment count |
| ∟ likes_count | int32 | true | Like count |
| ∟ shares_count | int32 | true | Share count |