File size: 298 Bytes
f19c267
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}