Skip to main content
POST
/
api
/
stocktwits
/
symbols
/
sentiment
/stocktwits/symbols/sentiment
curl --request POST \
  --url https://api.anysite.io/api/stocktwits/symbols/sentiment \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "symbol": "<string>",
  "timeout": 300
}
'
[
  {
    "date": "<string>",
    "@type": "@stocktwits_sentiment_point",
    "bullish": 123,
    "bearish": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
symbol
string
required

Ticker symbol

Minimum string length: 1
Examples:

"AAPL"

"TSLA"

"NVDA"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

date
string
required
@type
string
default:@stocktwits_sentiment_point
bullish
number | null
bearish
number | null