POST/api/v1/user-postsUsers

User Posts

Retrieve a paginated list of all posts submitted by a specific Reddit user across all subreddits.

Ready to try it?

Create a free account — 30 requests included, no credit card.

Get free API key →

Request Parameters

Send as a JSON body in your POST request.

ParameterTypeRequired
usernamestringYes
sortstringNo
timestringNo
limitnumberNo
afterstringNo

Code Examples

curl

curl -X POST https://subscraper.dev/api/v1/user-posts \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "username": "shittymorph",
    "sort": "top",
    "limit": 5
  }'

TypeScript SDK

const posts = await client.getUserPosts({
  username: "shittymorph",
  sort: "top",
  limit: 5
});
Install the SDK →

Sample Response

{
  "posts": [
    {
      "id": "t3_abc123",
      "title": "I made a thing",
      "subreddit": "DIY",
      "score": 45000,
      "numComments": 1200,
      "url": "https://reddit.com/r/DIY/...",
      "createdAt": "2020-05-12T10:00:00Z"
    }
  ],
  "after": "t3_abc123"
}

Common Use Cases

  • Auditing a user's post history
  • Building user portfolio views
  • Analyzing a user's most active subreddits

Credits

Each call to /api/v1/user-posts uses 1 credit. Free tier includes 30 credits. View pricing →

Related Tools & Guides

All developer tools →

Related Endpoints

Start using /user-posts now

Free tier — 30 requests, no credit card required.