HTTP / API
HTTP headers, caching, API request/response analysis.
The HTTP / API category groups together tools for inspecting and diagnosing the requests and responses that flow between websites and APIs. You can check HTTP response headers and status codes (200, 301, 404, 500, and so on), verify that caching headers like Cache-Control and ETag are set correctly, confirm whether Gzip or Brotli compression is in use, and see whether a server is talking over HTTP/2 or HTTP/3. The same tools help you build or decode curl commands and reason about API rate limits, making them handy for backend and frontend developers, DevOps engineers, API integrators, and anyone trying to tune web performance.
A typical workflow starts by pulling the response headers and status code for a target URL to get the overall picture, then checking caching, compression, and protocol version one at a time. When you see long redirect chains or errors such as 401, 403, or 429, you trace the cause through the headers and reproduce the call with curl to compare the exact request options, which narrows the problem down fast. Most tools in this category run entirely in your browser or simply fetch a response, so there is nothing to install before you start.