---
title: "Trending countries"
method: GET
path: "/reddit/stocks/v1/trending/countries"
tags: ["Reddit Stocks"]
---

# Trending countries

`GET /reddit/stocks/v1/trending/countries`

Returns the countries with the strongest aggregated Reddit stock discussion 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)
- `mentions`, `unique_tickers`, `subreddit_count`, `total_upvotes`: attributed volume and engagement signals, including inherited thread-context mentions
- `sentiment_score`, `bullish_pct`, `bearish_pct`: directional sentiment signals
- `top_tickers`: up to 5 tickers driving the country result
- `trend_history`: independent daily country buzz scores, oldest to newest; length is max(requested days, 7); the live final value describes today so far and can differ from period `buzz_score`

## 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 number of results
- `offset` integer — Number of items to skip for pagination

## Response `200`

Successful Response

- TrendingCountry[]
  - `buzz_score` number, required — Aggregated 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 — Total attributed mentions, including inherited thread-context mentions
  - `unique_tickers` integer, required — Number of unique tickers mentioned
  - `subreddit_count` integer, required — Number of subreddits with mentions
  - `sentiment_score` number, required — Weighted average sentiment (-1 bearish to +1 bullish)
  - `bullish_pct` integer, required — Percentage of sentiment-labeled mentions that are bullish
  - `bearish_pct` integer, required — Percentage of sentiment-labeled mentions that are bearish
  - `total_upvotes` integer, required — Total upvotes across attributed mentions
  - `trend_history` number[], required — Daily dimension buzz scores (oldest to newest). Length follows the resolved period, with a minimum of 7 values. Every slot describes only its UTC calendar day. The live final value describes today so far and can differ from period buzz_score. Closed historical windows end at `to`.
  - `top_tickers` string[], required — Top 5 tickers by mentions
  - `country` string, required — Country name

## Other responses

- `401` — Authentication failed
- `403` — Historical data limit exceeded
- `404` — No trending countries 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)
