Skip to main content
GET
Get a user's profile stats

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

user
string | null

The wallet whose profile stats to return. Required; 0x followed by 40 hexadecimal characters.

Response

The wallet's profile stats, or null when it is not a known user

{ "data": T }; the envelope for endpoints that don't paginate.

There is no pagination key: an aggregate or bounded list has no next page. Paginated feeds return a *Page shape ({ data, pagination }) instead.

data
null | object
required

The profile card for one wallet, plus its newest persisted all-time PnL observation.

join_date is null when unknown, which is a real state rather than an error; a meaningful share of accounts have no recorded creation time. biggest_win is 0 when the wallet has no win over $1. all_time_pnl is null when the user is known but has no observation yet; a missing user is represented by the outer response data: null instead.