Looks like it gets an html page from " rel="nofollow">https://iextrading.com/apps/stocks/#/ then scrapes it. Not really an API. Edit: ok, I'm wrong.
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(',')}`;