Here is the code author uses to get data:
const BASE_URL = 'https://api.iextrading.com/1.0/stock/market/batch'; let url = `${BASE_URL}?types=quote&symbols=${symbols.join(',')}&filter=${filters.join(',')}`;
Here is the code author uses to get data: