Security News
Get the news list for a specified security.
CLIInstall CLI
bash
# latest news for Tesla
longbridge news TSLA.US
# latest news for Apple
longbridge news AAPL.US
# latest news for 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 | 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": "279528757",
"title": "Beats cross-industry collaboration breaks the circle with Nike! Apple aims to ignite a new wave of wearable consumer trends, while Nike bets on the narrative of \"sports technology.\"",
"description": "Apple's Beats has collaborated with Nike to launch a limited edition Powerbeats Pro 2 headphones, featuring Nike's Swoosh logo. The headphones will be available online and at select Apple Stores on March 20, priced at $250. This marks Beats' first collaboration with an external sports brand, signifying further synergy between the two companies in branding and product ecosystems. The headphones feature real-time heart rate tracking and a battery life of up to 45 hours",
"url": "https://longbridge.com/news/279528757",
"published_at": "1773805586",
"comments_count": 0,
"likes_count": 0,
"shares_count": 0
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | news_response |
| 500 | Internal error | None |
Schemas
news_response
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | News list |
| ∟ id | string | true | News 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 |