get_user_posts
Retrieve posts submitted by a Reddit user, with options to sort by hot, new, or top and limit results from 1 to 100 posts.
Instructions
Get posts submitted by a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of posts to retrieve (1-100) | |
sort | No | Sort order for posts | new |
username | Yes | Reddit username (without u/ prefix) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 25,
"description": "Number of posts to retrieve (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"sort": {
"default": "new",
"description": "Sort order for posts",
"enum": [
"hot",
"new",
"top"
],
"type": "string"
},
"username": {
"description": "Reddit username (without u/ prefix)",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}