get_user_info
Retrieve Reddit user profile information including account details, karma, and activity history by providing a username.
Instructions
Get information about a Reddit user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | Reddit username (without u/ prefix) |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "Reddit username (without u/ prefix)",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}