Skip to main content
GET
/
v1
/
news
Get Market News
curl --request GET \
  --url https://api.aries.com/v1/news \
  --header 'Authorization: Bearer <token>'
{
  "articles": [
    {
      "author": "John Smith",
      "category": "earnings",
      "id": "news_abc123",
      "image_url": "https://cdn.financialnews.com/apple-earnings.jpg",
      "published_at": "2024-01-15T14:30:00Z",
      "sentiment": "positive",
      "source": "Financial News Daily",
      "summary": "Apple Inc. announced record-breaking fourth quarter earnings, surpassing analyst expectations with strong iPhone sales.",
      "symbols": [
        "AAPL"
      ],
      "title": "Apple Reports Record Q4 Earnings",
      "url": "https://financialnews.com/apple-q4-earnings"
    },
    {
      "author": "Jane Doe",
      "category": "technology",
      "id": "news_def456",
      "image_url": "https://cdn.marketwatch.com/tech-growth.jpg",
      "published_at": "2024-01-15T13:00:00Z",
      "sentiment": "positive",
      "source": "Market Watch",
      "summary": "Major technology companies continue to demonstrate robust growth amid market volatility.",
      "symbols": [
        "AAPL",
        "GOOGL",
        "MSFT",
        "NVDA"
      ],
      "title": "Tech Sector Shows Strong Growth",
      "url": "https://financialnews.com/tech-sector-growth"
    }
  ],
  "limit": 20,
  "offset": 0,
  "total": 150
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:20

Maximum number of news articles to return

Required range: 1 <= x <= 100
Example:

20

offset
integer
default:0

Number of articles to skip for pagination

Required range: x >= 0
Example:

0

symbols
string

Comma-separated list of stock symbols to filter news

Example:

"AAPL,GOOGL,MSFT"

category
enum<string>

News category filter

Available options:
market,
earnings,
economy,
technology,
healthcare,
energy,
finance
Example:

"technology"

from_date
string<date-time>

Start date for news articles (ISO 8601 format)

Example:

"2024-01-01T00:00:00Z"

to_date
string<date-time>

End date for news articles (ISO 8601 format)

Example:

"2024-12-31T23:59:59Z"

Response

News retrieved successfully

articles
object[]
limit
integer

Number of articles per page

offset
integer

Current pagination offset

total
integer

Total number of articles available