socialtickers API
Free, read-only JSON API for crypto & stock social-mention activity, prices and momentum. No API key, no signup, CORS-open. Attribution (link back to socialtickers.com) appreciated. Data is observational - not financial advice.
Endpoints
GET /api/v1/leaderboard
The ranked social-mention leaderboard.
| class | crypto or stocks (default crypto) |
| sort | trending (default), active, heating, signal, mcap, dominance |
| win | 1h, 24h (default), 7d (crypto) |
GET https://socialtickers.com/api/v1/leaderboard?class=crypto&sort=trending
{
"class": "crypto", "sort": "trending", "win": "24h", "count": 38,
"results": [
{
"ticker": "BTC", "name": "Bitcoin", "asset_class": "crypto",
"share": 55.5, "cat": "L1", "intensity": 1.0, "signal": 0.42,
"price": 61482, "change24": 0.83, "change7d": -16.8,
"market_cap": 1224928209065
}
]
}GET /api/v1/asset/{TICKER}
Single asset: latest price, 24h move, and the social-mention history series.
| {TICKER} | e.g. BTC, NVDA (path param) |
GET https://socialtickers.com/api/v1/asset/BTC
{
"ticker": "BTC", "asset_class": "crypto", "name": "Bitcoin",
"price": 61482, "change24": 0.83,
"history": [[1780000000, 412], [1780001800, 431]]
}Notes
- Prices refresh ~every 5 min; social mentions ~every 30 min.
- Source data is free-tier (Reddit/ApeWisdom mentions, CoinLore/Finnhub/Yahoo prices). Env-specific values; treat as relative signal.
- Please be reasonable with request volume - this is a free service on a single Worker.
- No auth, all
GET,Access-Control-Allow-Origin: *.
Building something? A link back to socialtickers.com is appreciated. Questions: see the disclaimer.