HTTP headers / request header
If-None-Match: "33a64df551425fcc"
Conditional GET: "give me the resource only if its ETag changed". Unchanged → 304 with empty body, saving bandwidth.
Your HTTP client may add it automatically from its cache — the reason you get mysterious 304s in debugging sessions.
The fastest way to see what If-None-Match is actually doing is to send the request and read both sides raw — ReqPad shows auto-generated and custom headers for every request, on all six protocols, with history. Related references: status codes · Authorization · Accept · Accept-Encoding · Accept-Language · If-Match · If-Modified-Since
Build the request, send it, read raw headers and timing — from your iPhone. Free to start.