How many bytes of data does a typical HTTP get request consume. For instance if I request a page from the server through a browser how many bytes of data would be sent?
It varies, especially when it comes to GET queries or POST requests, but I'd estimate it about 0.5—1k.
GET
POST
0.5—1k
Requesting a page from the browser, though, may also result in requesting pictures, stylesheets and other referenced content.
Edit: originally I put in the estimation for request+reply.