Skip to main content
GET
/
v1
/
news
Get Market News
curl --request GET \
  --url https://api.aries.com/v1/news \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.aries.com/v1/news"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.aries.com/v1/news', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aries.com/v1/news",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.aries.com/v1/news"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.aries.com/v1/news")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.aries.com/v1/news")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbols
string
default:SPY

Comma-separated list of stock symbols to filter news by. Default is SPY when omitted. Maximum 10 symbols per request. Each symbol must be a plain uppercase ticker (e.g. AAPL,TSLA,NVDA).

Example:

"AAPL,GOOGL,MSFT"

topics
string

Comma-separated list of topics to filter news. Maximum 10 topics per request. Common topics:

  • earnings — earnings releases and reports.
  • guidance — forward guidance updates.
  • mergers_acquisitions — M&A activity.
  • dividends — dividend announcements.
  • analyst_ratings — analyst upgrades and downgrades.
  • ipo — initial public offerings.
  • regulatory — SEC filings, lawsuits, regulatory actions.

Topic names depend on the upstream news catalog and may evolve over time.

Example:

"earnings,guidance"

Response

News retrieved successfully

news
object[]

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