Skip to main content
GET
/
news
Get real-time and historical news
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/news \
  --header 'Authorization: Bearer <token>'
{
  "news": [
    {
      "ticker": "<string>",
      "title": "<string>",
      "author": "<string>",
      "source": "<string>",
      "date": "2023-12-25",
      "url": "<string>",
      "sentiment": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ticker
string
required

The ticker symbol.

start_date
string<date>

The start date for the news data (format: YYYY-MM-DD).

end_date
string<date>

The end date for the news data (format: YYYY-MM-DD).

limit
integer
default:100

The maximum number of news articles to return (default: 100, max: 100).

Required range: 1 <= x <= 100

Response

News response

news
object[]