GET
/
news
/
v1
/
wire
/
page
curl --request GET \
  --url https://openapi.ainvest.com/open/news/v1/wire/page \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "startId": "<string>",
    "size": 123,
    "data": [
      {
        "news_id": "<string>",
        "news_important": 123,
        "publish_time": 123,
        "title": "<string>",
        "content": "<string>",
        "source": "<string>",
        "cover_image": {
          "src": "<string>",
          "type": "<string>"
        },
        "source_url": "<string>",
        "tag_list": [
          {
            "code": "<string>",
            "market": "<string>",
            "name_en": "<string>"
          }
        ]
      }
    ]
  },
  "status_code": 123,
  "status_msg": "<string>"
}

The news headlines, or newswire, is a near-realtime aggregated news feed curated by human financial professionals and enhanced by our AI models.

  • The news are sourced from public news outlets
  • Our AI generates and attaches an eye-catching cover image
  • After that it identifies and tags any trading tickers mentioned in the content
  • Then it determines the ‘importance’ of the news and marks accordingly so that API consumers could emphasize it to their end-users

The data is pushed very often, many times a minute. The endpoint supports filtering by stock symbol, industry or category.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your key. Get the key here

Query Parameters

tab
string
default:all

Filter by news category, can be one of the following values:

valuedescription
proPaid content
latestFull content
marketsMarkets
stock_ideasStock insights
economyEconomy
pre_marketPre-market
earningscallEarnings call
allAll content
stocks
string

US stock market ticker symbols, e.g. AAPL, TSLA, etc. You can specify multiple ticker symbols separated by commas. If not specified, return all news headlines.

industry
string

Filter by industry, can be one of the following values:

valuedescription
softwareSoftware
tech_hardwareTechnology and hardware
chipsSemiconductor and electronics
healthcare_equipmentHealthcare equipment
pharmaPharmaceuticals
banksBanking
defenseDefense
industrialsIndustrials
consumer_durablesConsumer Durables
autosAutomotive
staples_retailRetail and consumer staples
energy_equip_servEnergy
reitsReal estate
mediaMedia and entertainment
start_id
string

Used for paging. If specified, return the latest items from this id. If not specified, return the latest items from now.

Example:

"US_FLASH786892"

size
integer
default:10

Number of items to return. Default is 10, maximum is 50.

Required range: 1 <= x <= 50

Response

200 - application/json

An array of news headline structures

The response is of type object.