deepsite / market.ts
Ivano97's picture
Upload 17 files
f19c267 verified
raw
history blame
298 Bytes
import axios from 'axios';
export async function getSimplePrice(ids: string[]) {
const res = await axios.get('https://api.coingecko.com/api/v3/simple/price', {
params: {
ids: ids.join(','),
vs_currencies: 'usd',
include_24hr_change: 'true'
}
});
return res.data;
}