Skip to main content
GET
/
v1
/
news
/
{id}
Get News by ID
curl --request GET \
  --url https://api.aries.com/v1/news/{id} \
  --header 'Authorization: Bearer <token>'
{
  "action": "",
  "authors": [
    "John Author"
  ],
  "id": 12345,
  "symbols": [
    "AAPL",
    "MSFT"
  ],
  "title": "Apple Announces New Product",
  "body": "Full news article content here...",
  "news_type": "news",
  "timestamp": "2024-02-16T10:30:00Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Unique news item ID (must be numeric)

Example:

"123456"

Query Parameters

newsType
enum<string>
required

Type of news item to retrieve. Must be either 'news' or 'press_release'.

Available options:
news,
press_release
Example:

"news"

Response

News item retrieved successfully

action
string

News action type (typically empty)

authors
string[]

Authors of the news item

id
integer

Unique news item ID

symbols
string[]

Related stock symbols

title
string

News headline

body
string

Full body of the news article

news_type
enum<string>

Type of news item

Available options:
news,
press_release
timestamp
string<date-time>

Publication timestamp in ISO 8601 format