> ## 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_my_profile

> The key owner's own profile, including balances

The authenticated user's own profile — the **only** user shape that carries
financial fields: credits balance, diamonds, and total asset value.

**REST equivalent**: `GET /open/v1/me`

## Parameters

None — the account is determined by the API key.

## Returns

Captured live:

```json theme={null}
{
  "id": "23baf08b-5739-415c-a882-c373aab5d973",
  "handle": "67554427",
  "nickname": "Lukify SeeSaw",
  "avatar_url": "https://cdn.seesaw.fun/avatars/20260611/1fceed45-9a13-420b-b7ca-64442b5c6bd8.png",
  "account_type": "user",
  "url": "https://seesaw.fun/profile/23baf08b-5739-415c-a882-c373aab5d973",
  "bio": null,
  "stats": {
    "followers_count": 0,
    "following_count": 0,
    "topics_created_count": 0,
    "trades_count": 0,
    "total_volume": "0.0000",
    "creator_volume": "0.0000",
    "profit_rate": "0.0000",
    "rank_trade": 933,
    "rank_create": 57,
    "rank_roi": 501
  },
  "created_at": "2026-06-11T15:51:42Z",
  "credits": "8000.0000",
  "diamonds": 0,
  "total_assets": "8000.0000",
  "positions_value": "0.0000",
  "oracle_stakes": "0.0000"
}
```

Money math: `total_assets` = `credits` + `positions_value` +
`oracle_stakes`. All decimals are strings — see
[conventions](/api-reference/introduction#conventions).

## Example prompts

* "What's my SeeSaw balance?"
* "How much of my net worth is tied up in open positions?"

## Related

[`list_my_positions`](/mcp/tools/list-my-positions) ·
[`list_my_settlements`](/mcp/tools/list-my-settlements) ·
[`get_user`](/mcp/tools/get-user) (public view of any user)
