HTTP headers logo Http Headers

HTTP headers logo Http Headers


Description
- Tool to get list of response headers including redirect chain of a http connection.
- Limit : 30 requests per minute. Once reached subsequent requests will result in error 429 (too many requests) until your quota is cleared.
Endpoint - Get list of response headers
This endpoint retrieves list of response headers including redirect chain of a Http connection in JSON format
HTTP Request: GET /v1/headers?domain=domain.tld
examples :
/v1/headers?domain=https://github.com
/v1/headers?domain=www.github.com

response :
[
  {
    "HTTP": "301 Moved Permanently",
    "Final-URL": "http://github.com/",
    "location": "https://github.com/"
  },
  {
    "HTTP": "200 OK",
    "Final-URL": "https://github.com/",
    "content-type": "text/html; charset=utf-8",
    "strict-transport-security": "max-age=31536000; includeSubdomains"
  }
]