Last updated 3 months ago
Success
0: Timestamp (Unix), 1: Open price, 2: High price, 3: Low price, 4: Close price, 5: Volume, 6: Trades
const response = await fetch('https://datav2.nami.exchange/api/v1/chart/history?resolution=text', { method: 'GET', headers: {}, }); const data = await response.json();
[ [ 1715889600, 65144.26, 65289.99, 65054.24, 65273.9, 6.946629999999999, 452728 ] ]