Go, 268260 bytes
Most answers on this page are now wrong, as Google no longer accepts Firefox/8 as a valid User-Agent:
package main import(."io" h"net."net/http" r"regexp"."regexp") func main(){e,_:=h.NewRequest=NewRequest("GET","https://www.google.com/search?q=codegolf",nil) e.Header.Set("User-Agent","Firefox/51") s,_:=new(h.Client).Do(e) b,_:=io.ReadAll=ReadAll(s.Body) print(string(r.MustCompile(`About \S+ results`).Find(b)))}