Skip to main content
GET
Get trader volume chart

Path Parameters

address
string
required

Trader wallet address

Query Parameters

resolution
enum<string>

Time interval: 60, 240, D, 1D, W, 1W, M, 1M (default: 60) Bucket size for /analytics/timeseries and /analytics/deltas responses. Each value picks the time interval that one row in the output covers: 60 = 1 hour, 240 = 4 hours, D/1D = 1 day, W/1W = 7 days, M/1M = calendar month.

Available options:
60,
240,
D,
1D,
W,
1W,
M,
1M
count_back
integer<int32>

Number of data points (max: 2500)

from
integer<int64>

Start timestamp (Unix seconds)

to
integer<int64>

End timestamp (Unix seconds)

Response

200 - application/json

Trader volume with buy/sell breakdown over time

t
integer<int64>
required

Unix timestamp in seconds.

v
number<double>
required

Total volume in USD.

bv
number<double>
required

Buy volume in USD.

sv
number<double>
required

Sell volume in USD.

tc
integer<int64>
required

Total transaction count.

btc
integer<int64>
required

Buy transaction count.

stc
integer<int64>
required

Sell transaction count.

Last modified on August 7, 2026