v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
Reddit Crypto

Search tokens

Search known crypto assets by symbol, name or alias. Results prioritize exact symbol matches first, then prefixes, then name/alias matches and include a compact summary block for the last 7 UTC calendar days. Summary mentions includes inherited thread-context mentions.

get/reddit/crypto/v1/search

Query parameters

qstring required

Search query (minimum 2 non-$ characters after trimming)

Search query (minimum 2 non-$ characters after trimming)

limitinteger

Maximum number of results to return

Example:20

Maximum number of results to return

Response

Successful Response

querystring required

Original search query

countinteger required

Total number of matching assets before the limit is applied

period_daysinteger required

Fixed lookback window used for each summary block

Example response

{
  "query": "solana",
  "count": 1,
  "period_days": 7,
  "results": [
    {
      "symbol": "SOL",
      "name": "Solana",
      "market_cap_rank": 6,
      "market_cap_usd": 71234567890.12,
      "aliases": [
        "Sol"
      ],
      "summary": {
        "mentions": 287,
        "buzz_score": 72.4,
        "trend": "stable",
        "sentiment_score": 0.27,
        "bearish_pct": 19,
        "bullish_pct": 43,
        "subreddit_count": 9,
        "total_upvotes": 10422,
        "unique_posts": 73
      }
    }
  ]
}