---
title: "Trending tokens"
method: GET
path: "/reddit/crypto/v1/trending"
tags: ["Reddit Crypto"]
---

# Trending tokens

`GET /reddit/crypto/v1/trending`

Returns the crypto assets with the strongest Reddit discussion activity in the selected period, ranked by `buzz_score`.

**Includes:**
- `buzz_score`: normalized 0-100 activity score used for ranking
- `trend`: activity momentum over the current 3 UTC days vs previous 3 UTC days using mentions, upvotes and subreddit breadth; not price movement. For `from`/`to`, anchors at `to` (or now when `to` is today)
- `sentiment_score`, `bullish_pct`, `bearish_pct`: directional sentiment signals
- `mentions`, `unique_posts`, `subreddit_count`, `total_upvotes`: attributed volume and engagement signals, including inherited thread-context mentions
- `trend_history`: independent UTC-day buzz scores, oldest to newest; minimum 7 values; the live final value describes today so far and can differ from the selected-period `buzz_score`; missing days are `0.0`

## Query parameters

- `from` string, date, nullable — Start date in YYYY-MM-DD. Inclusive UTC date.
- `to` string, date, nullable — End date in YYYY-MM-DD. Inclusive UTC date. Omit to use the current UTC date.
- `days` integer — Deprecated v1 compatibility shorthand. Prefer `from` and `to` for reproducible UTC date windows.
- `limit` integer — Maximum tokens to return
- `offset` integer — Pagination offset

## Response `200`

Successful Response

- CryptoTrendingToken[]
  - `symbol` string, required — Token symbol
  - `name` string, nullable — Token name
  - `buzz_score` number, required — Buzz score (0-100)
  - `trend` 'rising' | 'falling' | 'stable', required — Activity momentum over the current 3 UTC days vs previous 3 UTC days using mentions, upvotes and subreddit breadth; not price movement. For `from`/`to`, anchors at `to` (or now when `to` is today).
  - `mentions` integer, required — Attributed mention count, including inherited thread-context mentions
  - `unique_posts` integer, required — Unique Reddit post count
  - `subreddit_count` integer, required — Unique subreddit count
  - `sentiment_score` number, required — Average sentiment score
  - `bullish_pct` integer, required — Bullish mention percentage
  - `bearish_pct` integer, required — Bearish mention percentage
  - `total_upvotes` integer, required — Total upvotes from attributed mentions
  - `trend_history` number[] — Daily buzz scores (oldest to newest). Length follows the resolved period, with a minimum of 7 values.

## Other responses

- `401` — Authentication failed
- `403` — Historical data limit exceeded
- `404` — No trending crypto tokens found
- `422` — Invalid period or query parameters
- `429` — Rate limit exceeded
- `503` — Database temporarily unavailable
- `504` — Analytics request deadline exceeded

---

[API](https://skmtc.net/adanos/apis/adanos-market-sentiment-api.md) · [All operations](https://skmtc.net/adanos/apis/adanos-market-sentiment-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/adanos/adanos-market-sentiment-api/revisions/351caf64ba81/schema)
