get_user_profile
Fetch a Reddit user's profile aggregate (karma, post/comment counts, first/last activity) by exact username. 1 credit per call, charged even if the username doesn't exist (a not-found lookup still made a real upstream call) — a miss comes back as data.user: null, not an error.
Remote threadsnoop/reddit
Remote (network-hosted)
Other tools also called get_user_profile?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"author": {
"type": "string",
"minLength": 1,
"description": "Exact Reddit username to look up, without the u/ prefix."
}
}
}