GET /holders/movers/{id}
GET

/v1/holders/movers/{id}

Top 24h buyers and sellers by holder balance delta

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/holders/movers/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
Query parameterValueDescription
limitint per side (default: 20, max 50)
curl 'https://api.xrpl.to/v1/holders/movers/0dd550278b74cb6690fdae351e8e0df3'

Response

No example was fetched for this page. Send the request to see a live response.
Shapeas documented
{
  success,
  took,
  limit,
  holders (total),
  movers (holders with a 24h change),
  buyersTotal,
  sellersTotal,
  boughtTotal/soldTotal (token-unit sums over all movers) + boughtTotalXrp/soldTotalXrp,
  pressure?: {
    m15/m30/h1/h4/h24: {
      sellers,
      sellPressureXrp (holdings value of recently-active sellers),
      buyers,
      buyPressureXrp (XRP balances of recently-active buyers)
    }
  },
  buyers[]/sellers[] (capped at limit): {
    account,
    name,
    balance,
    balance24h,
    change (token delta,
    signed),
    holding (% of supply),
    value? (current holdings worth,
    XRP),
    pnl?/roi? (trading gain/loss XRP + %),
    lastTrade? (last trade of this token),
    breakevenMcap? (entry breakeven: mcap XRP where their held tokens equal their FIFO cost),
    trades? (24h balance-change events [
      timeMs,
      side,
      xrpValue,
      mcapAtEvent,
      kind
    ] from trusts_24h + hourly candles; side 1=received/-1=sent,
    kind 0=trade/1=LP/2=transfer,
    max 120),
    isAMM?,
    isCreator?,
    freeze?
  }
}

What it does

Top 24h buyers and sellers by holder balance delta

A token id can be its md5, slug or issuer_currency. How to build an md5 →
OpenAPI