Content
Equity News
Returns news data attached to a specific company/equity.
GET /content/news
NOTE
- You must include one of the equity identifiers to get results (bloomberg_ticker, isin, ric, permid, or ticker)
- Only one of the equity identifiers (bloomberg_ticker, isin, ric, permid, or ticker) should be used per request. Using multiple equity identifier query parameters will end up resolving only one of them.
Parameter | Type | DataType | Description |
---|---|---|---|
news_source_id | query | integer | Filter by news source |
start_date | query | datetime | Fetch news published on or after this date (defaults to 12 weeks ago) |
end_date | query | datetime | Fetch news published on or before this date (defaults to today) |
bloomberg_ticker | query | string | Filter news to one or more bloomberg tickers (comma-separated) |
isin | query | string | Filter news to one or more ISINs (comma-separated) |
permid | query | string | Filter news to one or more PermIDs (comma-separated) |
ric | query | string | Filter news to one or more Reuters/Refinitiv RICs (comma-separated) |
ticker | query | string | Filter news to one or more tickers (comma-separated) |
from_id | query | integer | Content ID from which to return news (combine with size for pagination) |
from_index | query | integer | The index from which to return news (combine with size for pagination) |
size | query | integer | The number of news to return |
Request
https://premium.aiera.com/api/content/news?start_date=2024-11-01&end_date=2024-11-01&bloomberg_ticker=AMZN:US&size=3
Response
[
{
"content_id": 24871276,
"title": "Amazon Web Services Margins Could Peak This Year After Hitting New High in Third Quarter, BofA Says",
"news_source_id": 2593,
"news_source": "MT NewsWires",
"published_date": "2024-11-01T15:05:00",
"url": "https://dashboard.aiera.com/companies/1/activity/news?tabs[0]=nws|24871276"
},
{
"content_id": 24871280,
"title": "Argus Raises Price Target on Amazon.com to $230 From $205",
"news_source_id": 2593,
"news_source": "MT NewsWires",
"published_date": "2024-11-01T14:54:53",
"url": "https://dashboard.aiera.com/companies/1/activity/news?tabs[0]=nws|24871280"
},
{
"content_id": 24871128,
"title": "Sector Update: Tech",
"news_source_id": 2593,
"news_source": "MT NewsWires",
"published_date": "2024-11-01T13:40:18",
"url": "https://dashboard.aiera.com/companies/1/activity/news?tabs[0]=nws|24871128"
}
]
Code Samples
Bash
curl --request GET \
--url 'https://premium.aiera.com/api/content/news?bloomerg_ticker=AMZN:US' \
--header 'X-API-Key: xxx'
Python
import requests
requests.get("https://premium.aiera.com/api/content/news?bloomerg_ticker=AMZN:US", headers={"X-API-Key": "xxx"})