GET /sparkline/{id}
GET

/v1/sparkline/{id}

Price sparkline

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/sparkline/0dd550278b74cb6690fdae351e8e0df3
Path parameterValueDescription
idA token id: its md5, slug or issuer_currency
Query parameterValueDescription
period24h|7d (default: 7d)
vs_currencyXRP|USD (default: XRP)
lightweightbool - sample data points
max_pointsint (default: 20, range 2-500; only applies when lightweight=true)
pro24hfloat - override percentChange/chartColor when period=24h
pro7dfloat - override when period=7d
curl 'https://api.xrpl.to/v1/sparkline/0dd550278b74cb6690fdae351e8e0df3'

Response

200Example response13 ms · just now · 0.5 KB · 26 lines
https://api.xrpl.to/v1/sparkline/0dd550278b74cb6690fdae351e8e0df3
{
  "success": true,
  "chartColor": "#ed5565",
  "period": "7d",
  "percentChange": "-2.91",
  "lightweight": false,
  "vsCurrency": "XRP",
  "data": {
    "prices": [
      "0.72028800000000448023",
      "0.71989057676978840394",
      "0.71966299992803373087",
      "0.72034200000000003783",
      "0.71983887936577628519"
    ],
    "timestamps": [
      1789371300000,
      1789371600000,
      1789371900000,
      1789372200000,
      1789372500000
    ],
    "max": "0.7987376539281395571",
    "min": "0.6733482239678603154"
  }
}

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

Shapeas documented
{
  success,
  chartColor,
  period,
  percentChange,
  lightweight,
  vsCurrency,
  data: { prices[], timestamps[], max, min }
}

What it does

Price sparkline

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