# Reddit Profile Posts API (https://www.socialcrawl.dev/platforms/reddit/profile-posts) > Returns the posts a Reddit account has submitted, newest first by default, up to 25 per page. Each row carries the title, the body at `ext.selftext`, the score, the comment count, the upvote ratio, the flair, Reddit's own content language, the author avatar, structured media at `content.media_urls` and the permalink. `ext.subreddit` is the field that matters most on this lane and is populated on every row: a person's submissions span communities by construction, so it is the only thing that says where each post landed. Paginate with `cursor` from the previous response's `pagination.next_cursor`. `post.engagement.shares` is null here, as on every Reddit list endpoint — the upstream sends a share-BUTTON count on this shape and that is a different metric from the crosspost count this field means, so it is not published. An account with no submissions returns an empty list and is refunded; an account that does not exist is indistinguishable from one with no posts on this upstream and returns the same empty list, so check `/v1/reddit/profile` when you need to tell them apart. TL;DR: `GET /v1/reddit/profile/posts` 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. | | `sort` | no | Sort order for the account's submissions. (hot \| new \| top) | | `cursor` | no | Cursor to get more results. Get 'cursor' from the previous response. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/reddit/profile/posts?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