curl --request GET \
--url 'https://de.raze.sh/api/sol/tokens/price-changes/{tokenMint}?apiKey='{
"success": true,
"mint": "<string>",
"currentPrice": 123,
"currentPriceUSD": "<string>",
"oldestPrice": 123,
"oldestTime": "2023-11-07T05:31:56Z",
"tokenAgeSeconds": 123,
"changes": {
"5m": {
"change": 123,
"price": 123
},
"1h": {
"change": 123,
"price": 123
},
"4h": {
"change": 123,
"price": 123
},
"12h": {
"change": 123,
"price": 123
},
"24h": {
"change": 123,
"price": 123
}
},
"solPriceUSD": 123,
"timestamp": "2023-11-07T05:31:56Z"
}Get token price changes at 5m, 1h, 4h, 12h, and 24h intervals. Optimized endpoint that fetches only 6 data points instead of aggregating thousands.
curl --request GET \
--url 'https://de.raze.sh/api/sol/tokens/price-changes/{tokenMint}?apiKey='{
"success": true,
"mint": "<string>",
"currentPrice": 123,
"currentPriceUSD": "<string>",
"oldestPrice": 123,
"oldestTime": "2023-11-07T05:31:56Z",
"tokenAgeSeconds": 123,
"changes": {
"5m": {
"change": 123,
"price": 123
},
"1h": {
"change": 123,
"price": 123
},
"4h": {
"change": 123,
"price": 123
},
"12h": {
"change": 123,
"price": 123
},
"24h": {
"change": 123,
"price": 123
}
},
"solPriceUSD": 123,
"timestamp": "2023-11-07T05:31:56Z"
}Success
The oldest known price for this token
Timestamp of the oldest known price data point
Age of the token in seconds (from oldest data point to now)
Show child attributes