Skip to main content
GET
/
news
Get news articles
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

The ticker symbol of the company. Omit for broad market news.

limit
integer
default:5

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

Required range: x <= 10

Response

News articles response

news
object[]