get-user
Retrieve detailed information about specific HackerNews users including their profile data, karma score, and account activity.
Instructions
Get information about a specific HackerNews user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | The username to look up |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username to look up",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}