How can I download multiple symbols using Yahoo Finance API version >= 8? As you can see here I can download multiple stocks with version 7, but from version 8 onwards they changed something:
https://query2.finance.yahoo.com/v7/finance/quote?symbols=AAPL,KO
Specifically, with the latest version (11) I can add multiple modules with useful data, however I can only use one single stock for each request. How can I download multiple ones as I was able to do in the previous example?
https://query2.finance.yahoo.com/v11/finance/quoteSummary/KO?modules=summaryProfile,financialData,defaultKeyStatistics
I have tried:
https://query2.finance.yahoo.com/v11/finance/quoteSummary/AAPL,KO?modules=summaryProfile,financialData,defaultKeyStatistics
but it doesn't work.