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.

classcrypto or stocks (default crypto)
sorttrending (default), active, heating, signal, mcap, dominance
win1h, 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

Building something? A link back to socialtickers.com is appreciated. Questions: see the disclaimer.