get_user_info
Retrieve user details and submitted stories from Hacker News by specifying a username and optional story count.
Instructions
Get user info from Hacker News, including the stories they've submitted
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_stories | No | Number of stories to get, defaults to 10 | |
user_name | Yes | Username of the user |
Input Schema (JSON Schema)
{
"properties": {
"num_stories": {
"description": "Number of stories to get, defaults to 10",
"type": "integer"
},
"user_name": {
"description": "Username of the user",
"type": "string"
}
},
"required": [
"user_name"
],
"type": "object"
}