StoreSearch Tutorial - Question about HTTP GET requests

I am trying to understand the difference between REST and HTTP. I noticed that this tutorial uses HTTP Get requests instead of REST. Is there any particular reason why or is it just a coder preference thing?

They are different things. REST is built on top of HTTP; it’s a particular way of using HTTP GET (and PUT) requests to do certain tasks.