# Reddit Profile API (https://www.socialcrawl.dev/platforms/reddit/profile) > Returns one Reddit account by username: the four-way karma split, the cake day, the bio, the avatar and banner, the trophy count and the profile title. `author.likes_count` is TOTAL karma; the split that Reddit users actually reason about is at `ext.post_karma`, `ext.comment_karma` and `ext.awardee_karma`, and the three sum to the total. `author.joined_at` is the cake day. `author.display_name` carries Reddit's `t2_` fullname, which is the same value and the same encoding this API puts on `post.author.display_name` and `comment.author.display_name`, so a profile joins to that account's posts and comments on one field. `author.followers` is null and stays null: Reddit publishes no public follower count for an account, and the upstream's own `subscribers` field is 0 on every account measured, so reporting it would publish a hard zero as though it were a measurement. Verification, moderator and employee flags are not available on this surface and are null rather than guessed. A username that does not exist returns 404 and costs nothing. Usernames are matched case-insensitively. TL;DR: `GET /v1/reddit/profile` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | yes | Reddit username without the u/ prefix. Case-insensitive. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/reddit/profile?handle=spez" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Reddit API: https://www.socialcrawl.dev/platforms/reddit ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing