/v1/sparkline/{id}
Price sparkline
Request
https://api.xrpl.to/v1/sparkline/0dd550278b74cb6690fdae351e8e0df3| Path parameter | Value | Description |
|---|---|---|
| id | A token id: its md5, slug or issuer_currency |
| Query parameter | Value | Description |
|---|---|---|
| period | 24h|7d (default: 7d) | |
| vs_currency | XRP|USD (default: XRP) | |
| lightweight | bool - sample data points | |
| max_points | int (default: 20, range 2-500; only applies when lightweight=true) | |
| pro24h | float - override percentChange/chartColor when period=24h | |
| pro7d | float - override when period=7d |
curl 'https://api.xrpl.to/v1/sparkline/0dd550278b74cb6690fdae351e8e0df3'
Response
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.
{ success, chartColor, period, percentChange, lightweight, vsCurrency, data: { prices[], timestamps[], max, min } }