Skip to main content
GET
/
v2
/
polymarket
/
wallet
/
volume-chart
/
{wallet}
Get Wallet Volume Chart
curl --request GET \
  --url https://api.predexon.com/v2/polymarket/wallet/volume-chart/{wallet} \
  --header 'x-api-key: <api-key>'
{
  "wallet_address": "<string>",
  "granularity": "hour",
  "start_time": 123,
  "end_time": 123,
  "data": [
    {
      "timestamp": 123,
      "total_volume": 123,
      "buy_volume": 123,
      "sell_volume": 123,
      "trades_count": 123
    }
  ]
}
Returns per-period total, BUY, and SELL volume for a wallet, aggregated from trade events where the wallet was the maker.

Authorizations

x-api-key
string
header
required

Path Parameters

wallet
string
required

Wallet address to fetch volume chart for

Query Parameters

granularity
enum<string>
default:hour

Time granularity: hour, day, or week

Available options:
hour,
day,
week
start_time
integer
required

Unix timestamp (seconds) for start of time range

Required range: x >= 0
end_time
integer
required

Unix timestamp (seconds) for end of time range

Required range: x >= 0

Response

Successful Response

Wallet volume chart endpoint response.

wallet_address
string
required

Wallet address

granularity
enum<string>
required

Time granularity

Available options:
hour,
day,
week
start_time
integer
required

Unix timestamp of first data point

end_time
integer
required

Unix timestamp of last data point

data
WalletVolumeChartDataPoint · object[]
required

Volume data points