If you're more interested in the results than building the entire program, download WGET or cURL web crawling utilities. You can make QB64 SHELL calls to either of those programs, and pass the info on what sites you want to crawl. I know someplace I have a QB64 app I made, and I' thinking it just used the QB64 _OPENCLIENT statement for that one...
http://www.qb64.org/wiki/OPENCLIENTAnyway, you can search some threads here using WGET and/or cURL, and you'll find some coding examples, I'm sure. You cam also search _OPENCLIENT.
Oh, you will probably also want to code a parsing program, to extract that data from the downloaded webpage. What I do is load the entire page as a string variable, using a BINARY file read operation, and then a lot of INSTR() work to parse through the html tags to find the data, and then cut that section out to display it in my QB64 app.
I hope this gives you some ideas on how to proceed, and maybe some others will share their coding experiences, too and present some other alternatives.
Pete