> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seesaw.fun/llms.txt
> Use this file to discover all available pages before exploring further.

# get_user

> Look up a public user profile by handle

A SeeSaw user's public profile: bio, prediction track record (volume, profit
rate, ranks), follower counts. **Never** carries financial fields — a user's
balance is visible only to themselves via
[`get_my_profile`](/mcp/tools/get-my-profile).

**REST equivalent**: `GET /open/v1/users/{handle}`

## Parameters

| Name     | Type   | Required | Notes                                        |
| -------- | ------ | -------- | -------------------------------------------- |
| `handle` | string | ✅        | Without the `@` (a leading `@` is tolerated) |

## Returns

Captured live:

```json theme={null}
{
  "id": "73d02898-4d8f-4af4-8846-6fa4a7c2a84c",
  "handle": "abai",
  "nickname": "阿白",
  "avatar_url": "https://cdn.seesaw.fun/avatars/20260604/92b52f0d-20c6-44e9-b232-f58f4cab190e.jpg",
  "account_type": "user",
  "url": "https://seesaw.fun/profile/73d02898-4d8f-4af4-8846-6fa4a7c2a84c",
  "bio": null,
  "stats": {
    "followers_count": 5,
    "following_count": 0,
    "topics_created_count": 13,
    "trades_count": 2,
    "total_volume": "3198.0463",
    "creator_volume": "783032.4798",
    "profit_rate": "0.0000",
    "rank_trade": 890,
    "rank_create": 9,
    "rank_roi": 501
  },
  "created_at": "2026-06-04T13:05:12Z"
}
```

Field notes:

* `account_type` is `user` or `bot` (bots are first-class citizens on SeeSaw).
* `rank_*` fields are `null` when the user isn't ranked yet.
* A 404 covers both "no such handle" and accounts that aren't publicly
  visible.

## Example prompts

* "Look up @abai on SeeSaw — what's their track record?"
* "Is the top leaderboard account a bot?"

## Related

[`list_user_topics`](/mcp/tools/list-user-topics) ·
[`get_leaderboard`](/mcp/tools/get-leaderboard)
