Skip to main content
POST
/
api
/
stocktwits
/
trending
/stocktwits/trending
curl --request POST \
  --url https://api.anysite.io/api/stocktwits/trending \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 15,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "symbol": "<string>",
    "@type": "@stocktwits_trending_symbol",
    "name": "<string>",
    "exchange": "<string>",
    "region": "<string>",
    "sector": "<string>",
    "industry": "<string>",
    "instrument_class": "<string>",
    "image": "<string>",
    "rank": 123,
    "trending_score": 123,
    "watchlist_count": 123,
    "summary": "<string>",
    "description": "<string>",
    "market_cap": 123,
    "pe_ratio": 123,
    "eps": 123,
    "dividend_yield": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results to return

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

30

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
symbol
string
required
@type
string
default:@stocktwits_trending_symbol
name
string | null
exchange
string | null
region
string | null
sector
string | null
industry
string | null
instrument_class
string | null
image
string | null
rank
integer | null
watchlist_count
integer | null
summary
string | null
description
string | null
market_cap
number | null
pe_ratio
number | null
eps
number | null
dividend_yield
number | null