Skip to main content
POST
/
api
/
stocktwits
/
users
/stocktwits/users
curl --request POST \
  --url https://api.anysite.io/api/stocktwits/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "username": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "@type": "@stocktwits_user_stream",
    "name": "<string>",
    "image": "<string>",
    "identity": "<string>",
    "home_country": "<string>",
    "joined_at": "<string>",
    "follower_count": 123,
    "following_count": 123,
    "idea_count": 123,
    "watchlist_stock_count": 123,
    "like_count": 123,
    "is_official": false,
    "messages": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
username
string
required

User handle

Minimum string length: 1
Examples:

"TradingView"

"Howard_Lindzon"

count
integer
required

Max number of messages to return

Required range: x >= 1
Example:

30

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
@type
string
default:@stocktwits_user_stream
name
string | null
image
string | null
identity
string | null
home_country
string | null
joined_at
string | null
follower_count
integer | null
following_count
integer | null
idea_count
integer | null
watchlist_stock_count
integer | null
like_count
integer | null
is_official
boolean
default:false
messages
StocktwitsMessage · object[]