|
|
|
|
|
by samfisher83
2975 days ago
|
|
It uses the iex api. I have used the api before its really good. 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(',')}`;
|
|