Skip to main content
GET
/
v1
/
stock
/
social-sentiment
Get Social Sentiment
curl --request GET \
  --url https://api.aries.com/v1/stock/social-sentiment \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "AAPL",
  "data": [
    {
      "mention": 29,
      "positiveMention": 8,
      "negativeMention": 17,
      "positiveScore": 0.0312,
      "negativeScore": -0.0588,
      "score": -0.6,
      "atTime": "2026-03-09 14:00:00"
    }
  ]
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. AAPL).
fromstringNoFrom date YYYY-MM-DD (optional).
tostringNoTo date YYYY-MM-DD (optional).

Response

Success returns 200 OK with a JSON object containing social sentiment data (structure and fields may vary by provider). Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data found, 500 server error.

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

symbol
string
required

Stock ticker to query. Send the plain uppercase symbol exactly as you'd type it on a brokerage screen, e.g. AAPL, MSFT.

Example:

"AAPL"

from
string<date>

Start of the date window, inclusive. Format: YYYY-MM-DD (e.g. 2024-01-01).

to
string<date>

End of the date window, inclusive. Format: YYYY-MM-DD (e.g. 2024-12-31).

Response

Social sentiment data.

data
object[]
symbol
string