get_user_info
Retrieve Reddit user profile information including karma, account age, and post history by providing a username.
Instructions
Get information about a Reddit user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username of the Reddit user to get info for |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username of the Reddit user to get info for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}