//Source · Social Media
Reddit API — Nested Comment Threads and All
Reddit’s 2023 access changes locked down the official API — these 11 endpoints keep subreddits, posts, full comment threads, and user history one call away. By API key, no Reddit account, no OAuth.
Start for free7-day free trial
What You Can Pull From Reddit
Post detailsA single post by id or URL: title, body, score, author, and comment count.
Post commentsThe full comment thread of a post, with nested replies.
Subreddit postsPosts from a subreddit with sort (hot, new, top, rising) and time filter (hour to all).
Subreddit detailsSubreddit metadata: subscribers, description, type, language, NSFW and quarantine flags.
Popular subredditsThe most popular subreddits, ranked by subscriber volume.
Subreddit searchFind communities by keyword.
Post searchCross-subreddit keyword search across all of Reddit.
User profileA full user profile: karma breakdown (link vs comment), account age, and mod status.
User searchSearch users; returns link_karma, comment_karma, is_mod, and verification.
User postsA user’s post history across subreddits.
User commentsA user’s comment history across subreddits.
What Comes Back
POST /api/reddit/subreddits/posts
{
"subreddit": "programming",
"sort": "hot",
"time_filter": "day",
"posts": [
{
"title": "What we learned moving to typed endpoints",
"score": 1243,
"author": "dev_marlow",
"num_comments": 187
}
]
}Built for These Jobs
Start With Reddit Data
Subreddits, posts, comment threads, and user profiles on the same key as 500+ other sources. 7-day free trial.
Common Questions
No. Every endpoint authenticates with your Anysite API key — there’s no Reddit app to register, no OAuth flow, and no per-user token.