Content
Equity News
Returns news data attached to a specific company/equity.
GET /content/news
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 1+ bloomberg tickers (comma-separated) |
isin | query | string | Filter news to 1+ ISINs (comma-separated) |
permid | query | string | Filter news to 1+ PermIDs (comma-separated) |
ric | query | string | Filter news to 1+ Reuters/Refinitiv RICs (comma-separated) |
ticker | query | string | Filter news to 1+ 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 |
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.
Response
[
{
"content_id": 9209200,
"title": "Amazon is piling ads into search results and top consumer brands are paying up for prominent placement",
"news_source_id": 90,
"news_source": "CNBC",
"published_date": "2021-09-19T08:36:43",
"url": "https://dashboard.aiera.com/companies/1/activity/news?tabs[0]=nws|9209200"
},
{
"content_id": 9156876,
"title": "Amazon is planning a beauty products event for October to hook early holiday shoppers",
"news_source_id": 90,
"news_source": "CNBC",
"published_date": "2021-09-15T14:10:38",
"url": "https://dashboard.aiera.com/companies/1/activity/news?tabs[0]=nws|9156876"
},
{
"content_id": 9114259,
"title": "Savings app Acorns hires former Amazon executive as president, says crypto investing is coming",
"news_source_id": 90,
"news_source": "CNBC",
"published_date": "2021-09-15T09:00:06",
"url": "https://dashboard.aiera.com/companies/7984/activity/news?tabs[0]=nws|9114259"
}
]
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"})