Updated August 3, 2026
A daily snapshot of each tracked subreddit's current hot-feed post order, growing toward 10,000 subreddits— with no score field, because the underlying credential-free source doesn't expose vote counts.
100 subreddits sampled
from the August 3, 2026 snapshot
No score or comment-count field — see the FAQ below for why.
One row per subreddit: its current #1 hot-feed post, from a single page of the latest snapshot.
Sample only — a single page of the latest snapshot, not the full tracked-subreddit set. Query the endpoint directly for the complete list.
GET /datasets/reddit-trending/search takes an optional subreddit filter, a date for a past snapshot, plus q, sort (rank or date_desc) and paging.
subreddit — today's trending posts across every tracked subreddit.subreddit=webscraping — one subreddit's current trending posts.sort=date_desc — a subreddit's trending history over time.date=YYYY-MM-DD — a past snapshot.Fields per row: subreddit, snapshot_date, rank, post_id, title, author, permalink, domain, created_utc.
Today's trending
# Today's trending posts across tracked subreddits
curl "https://api.crawlora.net/api/v1/datasets/reddit-trending/search?sort=rank&page_size=25" \
-H "x-api-key: $CRAWLORA_API_KEY"One subreddit
# One subreddit's current trending posts
curl "https://api.crawlora.net/api/v1/datasets/reddit-trending/search?subreddit=webscraping&sort=rank" \
-H "x-api-key: $CRAWLORA_API_KEY"Trending history
# A subreddit's trending history over time
curl "https://api.crawlora.net/api/v1/datasets/reddit-trending/search?subreddit=webscraping&sort=date_desc" \
-H "x-api-key: $CRAWLORA_API_KEY"A daily snapshot of each tracked subreddit's current hot-feed post order — one document per subreddit, snapshot date, and rank — so a subreddit's trending posts can be tracked over time. It's built by calling Reddit's own hot-feed sort per subreddit once a day, the same credential-free approach behind Crawlora's live Reddit API.
The underlying scraper is a credential-free RSS-based service (the same one behind /reddit/subreddit/{subreddit}/posts), and Reddit's RSS feed does not expose vote counts or comment counts. "Rank" in this dataset reflects Reddit's own hot-feed ordering, not a locally computed score — it's a genuine limitation of the free, unauthenticated data source, not an oversight.
The tracked-subreddit registry starts at a hand-curated seed and grows daily via a discovery pass over Reddit's own sitewide trending feed, ramping toward a 10,000-subreddit target in steps rather than all at once — see the query section below for how to check current coverage via the dataset's own subreddit filter.
GET /datasets/reddit-trending/search with an x-api-key header. Omit date for the latest snapshot (today's trending), or pair subreddit with sort=date_desc for one subreddit's trending history over time. Full parameter list is in the API docs.