Retrieve OHLCV candlestick data for chart visualization
cURL
curl --request GET \ --url https://frontend-api-v3.pump.fun/candlesticks/{mint}
{ "mint": "<string>", "timeframe": 123, "candlesticks": [ { "timestamp": 123, "open": "<string>", "high": "<string>", "low": "<string>", "close": "<string>", "volume": "<string>", "trades": 123 } ], "total": 123 }
Authorization
Authorization: Bearer <your_token>
GET https://frontend-api-v3.pump.fun/candlesticks/{mint}
Show Candlestick Object
1
5
15
60
240
1440
curl -X GET "https://frontend-api-v3.pump.fun/candlesticks/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr?offset=0&limit=100&timeframe=15" \ -H "Authorization: Bearer <your_token>" \ -H "Accept: application/json"
<your_token>