Skip to main content
GET
Get a user's trading volume

授权

Authorization
string
header
必填

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

查询参数

user
string | null

The wallet whose volume to return. Required.

start
integer<int64> | null

Window start, epoch seconds, inclusive. Omitted or 0 disables the bound (the feeds' convention). Volume is tracked in whole UTC days, so the bound is floored to its UTC day.

end
integer<int64> | null

Window end, epoch seconds, inclusive, floored to its UTC day. Omitted or 0 disables the bound.

响应

The wallet's volume over the window: both-sides shares, the same measure in USD, and the trade count

{ "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
object
必填

/v2/user-volume: one wallet's trading volume over a whole-day window, in both units side by side.

volume is both-sides SHARES; volume_usdc is the same measure in USD; the bare name is the natural unit and _usdc is the denomination, the same pairing as current_size / entry_cost_usdc on /v2/positions. trade_count is the number of trades in the window.