Skip to main content
POST
/
api
/
stocktwits
/
users
/
search
/stocktwits/users/search
curl --request POST \
  --url https://api.anysite.io/api/stocktwits/users/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 8,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "@type": "@stocktwits_user_result",
    "name": "<string>",
    "image": "<string>",
    "is_official": false,
    "is_premium": false,
    "is_verified": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Examples:

"trader"

"bezos"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 15
Example:

10

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_result
name
string | null
image
string | null
is_official
boolean
default:false
is_premium
boolean
default:false
is_verified
boolean
default:false