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.
ParameterTypeDataTypeDescription
news_source_idqueryintegerFilter by news source
start_datequerydatetimeFetch news published on or after this date (defaults to 12 weeks ago)
end_datequerydatetimeFetch news published on or before this date (defaults to today)
bloomberg_tickerquerystringFilter news to one or more bloomberg tickers (comma-separated)
isinquerystringFilter news to one or more ISINs (comma-separated)
permidquerystringFilter news to one or more PermIDs (comma-separated)
ricquerystringFilter news to one or more Reuters/Refinitiv RICs (comma-separated)
tickerquerystringFilter news to one or more tickers (comma-separated)
from_idqueryintegerContent ID from which to return news (combine with size for pagination)
from_indexqueryintegerThe index from which to return news (combine with size for pagination)
sizequeryintegerThe 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"})
Previous
Get Matches