Skip to main content
GET
/
v1
/
news
Get Market News
curl --request GET \
  --url https://api.aries.com/v1/news \
  --header 'Authorization: Bearer <token>'
{
  "news": [
    {
      "action": "",
      "authors": [
        "Jane Smith"
      ],
      "id": 123456,
      "symbols": [
        "AAPL"
      ],
      "title": "Apple Announces New Product Line",
      "body": "",
      "news_type": "news",
      "timestamp": "2024-02-16T14:30:00Z"
    },
    {
      "action": "",
      "authors": [
        "John Doe"
      ],
      "id": 123457,
      "symbols": [
        "MSFT"
      ],
      "title": "Microsoft Q4 Earnings Beat Expectations",
      "body": "",
      "news_type": "press_release",
      "timestamp": "2024-02-16T13:15:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

symbols
string
default:SPY

Comma-separated list of stock symbols to filter news (e.g., "AAPL,GOOGL,MSFT"). Defaults to "SPY" if not provided. Maximum 10 symbols allowed.

Example:

"AAPL,GOOGL,MSFT"

topics
string

Comma-separated list of topics to filter news. Maximum 10 topics allowed.

Example:

"earnings,guidance"

Response

News retrieved successfully

news
object[]

Array of news items and press releases, sorted by timestamp (newest first)