GET /token/analytics/trader/{address}/history
GET

/v1/token/analytics/trader/{address}/history

Trader volume history

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/token/analytics/trader/rpiFwLYi6Gb1ESHYorn2QG1WU5vw2u4exQ/history
Path parameterValueDescription
addressAn XRPL account, its r-address
Query parameterValueDescription
startDateISO
endDateISO
pageint (1-based, default 1; page 1 = most recent window)
limitint (max 500, default 100)
curl 'https://api.xrpl.to/v1/token/analytics/trader/rpiFwLYi6Gb1ESHYorn2QG1WU5vw2u4exQ/history'

Response

200Example response3 ms · just now · 1.4 KB · 47 lines
https://api.xrpl.to/v1/token/analytics/trader/rpiFwLYi6Gb1ESHYorn2QG1WU5vw2u4exQ/history
[
  {
    "date": "2026-06-14T00:00:00.000Z",
    "h24Volume": 658156.1413109994,
    "h24BuyVolume": 327649.23603299976,
    "h24SellVolume": 330506.9052779996,
    "cumulativeVolume": 171056560.024814,
    "cumulativeBuyVolume": 85706899.0190421,
    "cumulativeSellVolume": 85349661.00577195
  },
  {
    "date": "2026-06-15T00:00:00.000Z",
    "h24Volume": 1610914.5400760006,
    "h24BuyVolume": 805608.574949,
    "h24SellVolume": 805305.9651270007,
    "cumulativeVolume": 172667474.56489,
    "cumulativeBuyVolume": 86512507.5939911,
    "cumulativeSellVolume": 86154966.97089896
  },
  {
    "date": "2026-06-16T00:00:00.000Z",
    "h24Volume": 483029.370679,
    "h24BuyVolume": 241419.576859,
    "h24SellVolume": 241609.79382,
    "cumulativeVolume": 173150503.935569,
    "cumulativeBuyVolume": 86753927.1708501,
    "cumulativeSellVolume": 86396576.76471895
  },
  {
    "date": "2026-06-17T00:00:00.000Z",
    "h24Volume": 1248018.7762320023,
    "h24BuyVolume": 625723.6887790008,
    "h24SellVolume": 622295.0874530016,
    "cumulativeVolume": 174398522.711801,
    "cumulativeBuyVolume": 87379650.8596291,
    "cumulativeSellVolume": 87018871.85217196
  },
  {
    "date": "2026-06-18T00:00:00.000Z",
    "h24Volume": 512978.03008299985,
    "h24BuyVolume": 256461.97465799996,
    "h24SellVolume": 256516.05542499988,
    "cumulativeVolume": 174911500.741884,
    "cumulativeBuyVolume": 87636112.83428709,
    "cumulativeSellVolume": 87275387.90759696
  }
]

Long arrays and strings are shortened in the example; Send request for the full answer.

What it does

Trader volume history

Notes
Returns a bare JSON array
An account is its r-address, e.g. rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9.
OpenAPI