VOOZH about

URL: https://apify.com/truefetch/reddit-user-profile

โ‡ฑ Reddit User Deep-Dive API โ€” 100K Posts per Account ยท Apify


Pricing

from $0.069 / profile

Go to Apify Store

Deep-dive any Reddit account โ€” karma breakdown, top subreddits, post and comment history, account age, and 19 fields. Up to 100,000 posts per user. $69 per 1,000.

Pricing

from $0.069 / profile

Rating

5.0

(2)

Developer

๐Ÿ‘ TrueFetch

TrueFetch

Maintained by Community

Actor stats

4

Bookmarked

311

Total users

177

Monthly active users

9 hours ago

Last modified

Share

Affiliate disclosure: Apify links on this page may include referral parameters. If you sign up through one of these links, TrueFetch may earn a commission from Apify at no extra cost to you. Pricing, features, and Actor access are unaffected.

๐Ÿ‘ Reddit User Profile
๐Ÿ‘ Reddit Profile Scraper
๐Ÿ‘ $0.069 per Profile
๐Ÿ‘ Posts, Comments & Trophies
๐Ÿ‘ Telegram Support
๐Ÿ‘ Telegram Group

Reddit User Profile โ€” Reddit Profile Scraper: Posts, Comments & Trophies

Provide a Reddit username and extract the full public profile โ€” karma, trophies, moderated subreddits, recent posts, and comment history โ€” up to 100,000 posts and 100,000 comments per user. No login required.

TL;DR (40-word answer): Reddit User Profile is a no-login Apify Actor that returns structured Reddit user profiles at $0.069 per profile plus $0.0058 per post and $0.00015 per comment, with full post and comment history. Last verified 2026-05-02.

What it is NOT: Reddit User Profile is not a subreddit scraper, not a keyword search tool, and not a community member lister โ€” it fetches the full public profile and post/comment history of a specific Reddit user by username.

Reddit User Profile is an Apify Actor that accepts a Reddit username and returns their structured public profile with optional post and comment history via the Reddit API. Maintained by TrueFetch on the Apify Store.


๐Ÿท๏ธ Why choose Reddit User Profile

Reddit User Profile is best for influencer researchers, social media analysts, and NLP engineers who need full Reddit user profiles with post and comment histories.

  • ๐Ÿ“Š Full profile + activity โ€” karma, trophies, moderated subreddits, multireddits, up to 100,000 posts, and 100,000 comments.
  • ๐Ÿ”ข Configurable depth โ€” control the number of posts and comments fetched per user independently.
  • โšก Pay-per-result pricing โ€” $0.069 per profile + $0.0058 per post + $0.00015 per comment. Free Apify plan includes $5 monthly credits.

๐Ÿš€ Quick Start โ€” run in 3 steps

Run in Apify Console

  1. Open the Actor โ€” go to Reddit User Profile on Apify and click Try for free.
  2. Configure inputs โ€” enter a Reddit username (e.g. spez) and set max_posts and max_comments.
  3. Click Start โ€” the Actor returns the user profile plus posts and comments in the default dataset.

Run via Apify API

curl-X POST "https://api.apify.com/v2/acts/TrueFetch~reddit-user-profile/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"username": "spez",
"max_posts": 50,
"max_comments": 50
}'

Run via MCP (for AI agents)

Reddit User Profile is callable from Claude, ChatGPT, Cursor, and any MCP-compatible client through the Apify MCP Server. Reference the Actor as TrueFetch/reddit-user-profile and pass the same JSON input as above.


โš™๏ธ Input parameters

ParameterTypeRequiredDefaultDescriptionExample
usernamestringโœ…โ€”Reddit username or profile URL (e.g. spez, u/spez, or https://www.reddit.com/user/spez/).spez
max_postsintegerโŒ0Number of posts to fetch. Maximum 100,000. Set to 0 to skip.50
max_commentsintegerโŒ0Number of comments to fetch. Maximum 100,000. Set to 0 to skip.50
{
"username":"spez",
"max_posts":50,
"max_comments":50
}

๐Ÿ“ฆ Output dataset

Each run writes a structured user profile record plus optional post and comment records to the default Apify dataset, exportable as JSON, JSONL, CSV, Excel, XML, RSS, or via the dataset API.

Profile record fields

FieldTypeAlways present?DescriptionExample
processorstringโœ…Apify Actor URL that produced this record.https://apify.com/TrueFetch/reddit-user-profile
processed_atstringโœ…ISO 8601 UTC timestamp.2026-04-24T09:30:00+00:00
idstringoptionalReddit user ID.1w72
usernamestringoptionalReddit username.u/spez
namestringoptionalDisplay name.Steve Huffman
aboutstringoptionalUser bio text.CEO of Reddit
avatarstringoptionalAvatar image URL.https://i.redd.it/...
post_karmaintegeroptionalPost karma count.110000
comment_karmaintegeroptionalComment karma count.350000
createdstringoptionalAccount creation timestamp (UTC).2005-06-06T00:00:00+00:00
verifiedbooleanoptionalWhether the account is verified.true
is_premiumbooleanoptionalWhether the user has Reddit Premium.true
is_moderatorbooleanoptionalWhether the user moderates any subreddit.true
is_employeebooleanoptionalWhether the user is a Reddit employee.true
trophiesarrayoptionalArray of earned trophies.[{"name": "Verified Email"}]
moderatedarrayoptionalArray of moderated subreddits.[{"name": "r/reddit"}]
multiredditsarrayoptionalArray of curated multireddits.[]
postsarrayoptionalArray of recent post objects (if max_posts > 0).[{"title": "..."}]
commentsarrayoptionalArray of recent comment objects (if max_comments > 0).[{"body": "..."}]

Sample output

{
"processor":"https://apify.com/TrueFetch/reddit-user-profile",
"processed_at":"2026-04-24T09:30:00+00:00",
"username":"u/spez",
"post_karma":110000,
"comment_karma":350000,
"is_employee":true,
"trophies":[{"name":"Verified Email"}]
}

๐Ÿ’ก Use cases

For influencer researchers profiling top Reddit contributors

  • Problem: a brand agency needs full Reddit profiles for 100 identified influencers including their karma history and moderation roles.
  • How Reddit User Profile solves it: run once per username with desired max_posts to get structured profile and activity data.
  • Outcome: structured influencer data at $0.069 per profile + post/comment costs.

For NLP researchers building per-user Reddit activity datasets

  • Problem: an ML team needs all posts and comments from 50 Reddit accounts for authorship analysis.
  • How Reddit User Profile solves it: run with max_posts: 1000 and max_comments: 1000 per user for bulk activity data.
  • Outcome: per-user post and comment datasets for NLP model training.

For AI agents answering questions about a specific Reddit user

  • Problem: LLM agents asked "what has u/spez posted about recently?" cannot answer from stale training data.
  • How Reddit User Profile solves it: call the Actor over the Apify MCP Server to retrieve live profile and post data.
  • Outcome: grounded Reddit user data in production AI assistants.

๐Ÿ’ฐ Pricing, limits, and performance

FactValue
Pricing modelPay-per-result (events: profile, post, comment)
Per-profile price$0.069 per profile = $69 per 1,000
Per-post price$0.0058 per post = $5.80 per 1,000
Per-comment price$0.00015 per comment = $0.15 per 1,000
Free-tier monthly allowance$5 Apify credits โ‰ˆ ~72 free profiles (profile-only, no posts) / month
Max posts per user100,000
Max comments per user100,000
Output fields per profile19
Login / cookies requiredNo โ€” works without a Reddit account
Export formatsJSON, JSONL, CSV, Excel, XML, RSS, dataset API

โš–๏ธ Compared with alternatives

CapabilityReddit User ProfileReddit API (PRAW)Custom scraper
Full user profile with 19 fields including trophiesโœ…code requiredyou build & maintain
Post and comment history up to 100,000 eachโœ…โœ…you implement
Pay-per-result pricing$0.069 / profilefree but rate-limitedinfra + dev cost
Export to CSV / JSONโœ…โŒyou implement
Setup time to first result< 60 secondshoursdaysโ€“weeks

Verdict. Reddit User Profile is ideal for researchers who need structured Reddit user data with post and comment history without managing Reddit API credentials or rate limits.


โš ๏ธ Common mistakes to avoid

  1. Not setting max_posts and max_comments. By default both are 0 โ€” the Actor only returns the profile. Set these values to also collect activity data.
  2. Setting very high max_comments unintentionally. With max_comments: 10000, you may incur $1.50 per user in comment charges. Start small.
  3. Passing the full URL as username. The Actor accepts u/username, plain username, or the full URL โ€” any format works.

๐Ÿ› ๏ธ Troubleshooting

ProblemLikely causeFix
Missing 'username' fieldInput is missing the username key.Add "username": "reddit_username" to your input JSON.
Empty dataset returnedUser account is suspended, deleted, or shadowbanned.Verify the username exists on Reddit.
No posts or comments in outputmax_posts and max_comments are both 0 (default).Set max_posts and/or max_comments to a positive value.
Charge limit reachedAccount-level monthly spend limit hit.Raise the run / monthly limit in your Apify plan settings.

โ“ FAQ

What data does Reddit User Profile return?

Reddit User Profile returns a full public profile with 19 structured fields (karma, trophies, moderated subreddits, multireddits) plus optional post and comment histories up to 100,000 each.

How much does Reddit User Profile cost?

The Actor charges $0.069 per profile, $0.0058 per post, and $0.00015 per comment. The Apify Free plan includes $5 of monthly platform credits.

Does Reddit User Profile require a login?

No. Reddit User Profile uses the Reddit API without requiring a user login or cookies.

How do I get only the profile without posts or comments?

Leave max_posts and max_comments at their default value of 0.


๐Ÿ”Œ Integrations

Reddit User Profile plugs straight into the Apify ecosystem:

  • Schedules โ€” monitor user activity changes on a recurring schedule (docs).
  • Webhooks โ€” POST results to your endpoint on ACTOR.RUN.SUCCEEDED (docs).
  • Apify API โ€” run-sync-get-dataset-items for blocking calls, runs for async (docs).
  • MCP Server โ€” call the Actor from Claude, ChatGPT, or Cursor agents (docs).
  • No-code โ€” Make, Zapier, n8n, Pipedream, Google Sheets, Airtable.

๐Ÿงฑ Sister Actors from TrueFetch

Jobs

Shopping & Deals

Vehicles

Real Estate

Local Business & Food

Classifieds

Social Media

Videos & Text

Content & Articles


๐Ÿ“ž Support, changelog, last updated

Support

Maintained by TrueFetch on the Apify Store.

Cost of doing nothing: manually collecting Reddit user profiles and activity histories takes hours per user. Reddit User Profile delivers structured data at $0.069 per profile via API. โ†’ Try it free with $5 of Apify credits.

Changelog

  • 2026-05-02 โ€” README rewritten for SEO + GEO; documented all output fields, pricing, troubleshooting matrix, and FAQ.
  • 2026-04 โ€” Added multireddits and moderated arrays.
  • 2026-02 โ€” Initial release: Reddit user profile with post and comment history.

{
"@context":"https://schema.org",
"@graph":[
{
"@type":"SoftwareApplication",
"@id":"https://apify.com/TrueFetch/reddit-user-profile#software",
"name":"Reddit User Profile",
"description":"Apify Actor that returns structured Reddit user profiles with post and comment history at $0.069 per profile, $0.0058 per post, and $0.00015 per comment.",
"applicationCategory":"BusinessApplication",
"operatingSystem":"Web, Cloud",
"url":"https://apify.com/TrueFetch/reddit-user-profile",
"offers":{
"@type":"Offer",
"price":"0.069",
"priceCurrency":"USD",
"availability":"https://schema.org/InStock"
},
"author":{"@id":"https://apify.com/TrueFetch#author-TrueFetch"},
"publisher":{"@id":"https://apify.com/TrueFetch#publisher"}
},
{
"@type":"Organization",
"@id":"https://apify.com/TrueFetch#publisher",
"name":"TrueFetch",
"url":"https://apify.com/TrueFetch",
"sameAs":["https://t.me/TrueFetch","https://t.me/AiAgentApi"]
},
{
"@type":"FAQPage",
"mainEntity":[
{
"@type":"Question",
"name":"What data does Reddit User Profile return?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Reddit User Profile returns a full public profile with 19 structured fields including karma, trophies, moderated subreddits, plus optional post and comment histories up to 100,000 each."
}
},
{
"@type":"Question",
"name":"How much does Reddit User Profile cost?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Reddit User Profile charges $0.069 per profile, $0.0058 per post, and $0.00015 per comment. The Apify Free plan includes $5 of monthly platform credits."
}
},
{
"@type":"Question",
"name":"How do I get only the profile without posts or comments?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Leave max_posts and max_comments at their default value of 0."
}
}
]
},
{
"@type":"BreadcrumbList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"name":"Apify",
"item":"https://apify.com"
},
{
"@type":"ListItem",
"position":2,
"name":"Social Media",
"item":"https://apify.com/store?category=SOCIAL_MEDIA"
},
{
"@type":"ListItem",
"position":3,
"name":"Reddit User Profile",
"item":"https://apify.com/TrueFetch/reddit-user-profile"
}
]
}
]
}

Last Updated: May 2, 2026 Schema version: 1.1 Maintained by: TrueFetch ยท ๐Ÿ’ฌ Telegram Group ยท ๐Ÿ“ง Support

You might also like

Reddit User Scraper - Profiles, Karma & Post History ($1.5/1k)

harshmaur/reddit-user-scraper

Scrape any Reddit user's profile from a username or URL โ€” karma, account age, and full post and comment history. Built for audience research, moderation vetting, and OSINT on public data. No API key, no login. Export to CSV, Excel, or JSON. From $1.50 per 1,000 results.

3

5.0

Reddit Community Member

truefetch/reddit-community-member

List active members in any subreddit โ€” username, karma score, account age, trophy count, and 20 fields per user. Min 50 results per run. No Reddit account. $2.96 per 1,000.

Reddit Author Scraper

agentx/reddit-author-scraper

Reddit user lookup API โ€” pass any username and pull the profile (display name, bio, post karma, comment karma, verified-email flag, account age) plus up to 100,000 of their posts and 100,000 of their comments. Useful for moderator vetting, influencer research, and audience-segment profiling.

Reddit Profile Scraper

codingfrontend/reddit-profile-scraper

Scrape Reddit user profiles by username or profile URL โ€” including karma, bio, avatar, account age, and optional recent posts and comments.

๐Ÿ‘ User avatar

codingfrontend

2

Reddit User Posts & Comments Scraper | Bulk Export

clearpath/reddit-user-content-scraper

Scrape all posts and comments from any Reddit user profile. Supports sorting, time filters, and bulk username input. Up to 1,000 items per user.

Reddit Profile Scraper | Fastest Bulk Username Lookup

clearpath/reddit-profile-scraper

Scrape 1,000+ Reddit profiles in seconds. Get karma breakdown, account age, verification status, premium/mod flags, and all public fields. Accepts usernames, u/name, profile URLs, or CSV uploads. No Reddit login needed.

Reddit User Scraper

backhoe/reddit-user-scraper

Collect public Reddit user profiles including karma, registration date, and activity history (posts and comments). Track user engagement across multiple subreddits with context preservation.

Reddit User Posts Scraper

scrapearchitect/reddit-user-posts-scraper

Reddit User Posts Scraper

๐Ÿ‘ User avatar

Scrape Architect

2

Reddit Scraper

simpleapi/reddit-scraper

Reddit Scraper extracts data from Reddit posts, comments, and user profiles across subreddits. Collect usernames, post titles, comment text, karma, and engagement signals to discover trends, leads, audience insights, or discussions relevant to your niche. ๐Ÿ”Ž๐Ÿ“Š