you can also pass an array of tokens if u want to get token details specifical
const tokens = ['0x1::aptos_coin::AptosCoin'] // u can add more tokens
const response = await axios.get('https://ag.kanalabs.io/tokens', {
params: {
chain: KanaChainID.aptos,
tokens: JSON.stringify(tokens), // pls note here , u need to stringify the array
},
headers: {
'Content-Type': 'application/json',
'X-API-KEY': '//* YOUR API KEY *//',
},
});