Skip to main content
GET
/
v1
/
analyst
/
insights
Get Analyst Insights
curl --request GET \
  --url https://api.aries.com/v1/analyst/insights \
  --header 'Authorization: Bearer <token>'
{
  "insights": [
    {
      "ticker": "AAPL",
      "analyst": "Goldman Sachs",
      "rating": "Buy",
      "priceTarget": 200,
      "date": "2025-01-10"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

ticker
string

Stock ticker symbol to get insights for

limit
integer
default:50

Maximum number of insights to return

Required range: 1 <= x <= 1000

Response

200 - application/json

Successful response

insights
object[]