/api/external/sentimentread:sentimentDaily sentiment for a symbol
Returns today's regex-classified headline sentiment for a stock, plus a 7-day trailing average. Sentiment is bullish/neutral/bearish; confidence is 0–1.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | required | Ticker, e.g. ASML or AAPL |
Example request
curl -H "Authorization: Bearer ti_<token>" \ "https://www.thickerpeek.com/api/external/sentiment?symbol=ASML"
Response
200 OK with the latest classified sentiment.
{
"symbol": "ASML",
"sentiment": "bullish",
"confidence": 0.74,
"asOf": "2026-05-07"
}