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

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

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

Query Parameters

symbol
string
required

Stock ticker symbol

from
string

From date (YYYY-MM-DD)

to
string

To date (YYYY-MM-DD)

Response

Successful response

data
object[]
symbol
string