curl --request GET \
--url https://api.paxoslabs.com/v2/amplify/withdrawalVolumes \
--header 'x-api-key: <api-key>'{
"withdrawalVolumes": [
{
"vaultAddress": "0x1234567890abcdef1234567890abcdef12345678",
"chainId": 1,
"startTime": "2026-01-01T00:00:00Z",
"endTime": "2026-01-02T00:00:00Z",
"interval": "86400s",
"volumeUsd": "12345.67",
"volumeAsset": "12345.67",
"wantAssetAddress": "0xabcdef1234567890abcdef1234567890abcdef12"
}
],
"nextPageToken": "eyJvZmZzZXQiOjI1fQ=="
}Returns historical withdrawal volume aggregated by time interval. startTime, endTime, and vaultAddress are required. Optionally filter by chainId and wantAssetAddress using the filter parameter. Defaults: orderByTimestamp=asc; pageSize=25 (max 100); omit pageToken for the first page. interval is optional.
curl --request GET \
--url https://api.paxoslabs.com/v2/amplify/withdrawalVolumes \
--header 'x-api-key: <api-key>'{
"withdrawalVolumes": [
{
"vaultAddress": "0x1234567890abcdef1234567890abcdef12345678",
"chainId": 1,
"startTime": "2026-01-01T00:00:00Z",
"endTime": "2026-01-02T00:00:00Z",
"interval": "86400s",
"volumeUsd": "12345.67",
"volumeAsset": "12345.67",
"wantAssetAddress": "0xabcdef1234567890abcdef1234567890abcdef12"
}
],
"nextPageToken": "eyJvZmZzZXQiOjI1fQ=="
}API key in format: pxl_<public_id>_
Maximum items per page. Default: 25. Min: 1, max: 100.
1 <= x <= 10025
Opaque token for the next page. Omit for the first page.
"eyJvZmZzZXQiOjI1fQ=="
Start of time range (RFC 3339 UTC). Required.
"2026-01-01T00:00:00Z"
End of time range (RFC 3339 UTC). Required.
"2026-01-21T00:00:00Z"
Vault address to filter by (hex address). Required.
"0x1234567890abcdef1234567890abcdef12345678"
Duration between data points (e.g. 86400s). Optional.
"86400s"
Order by timestamp. Allowed: asc, desc. Default: asc.
asc, desc Filter string. Flags: chainId, wantAssetAddress. Optional.
"chainId=1 AND wantAssetAddress=0xabcdef1234567890abcdef1234567890abcdef12"