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

Authorizations

Authorization
string
header
required

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

Path Parameters

seo_key
string
required

Denotes the news headline identifier

Response

200 - application/json

An array of news headline structures

The response is of type object.