HTTP Headers Inspector - All Response Headers & Security avatar

HTTP Headers Inspector - All Response Headers & Security

Pricing

from $0.50 / 1,000 results

Go to Apify Store
HTTP Headers Inspector - All Response Headers & Security

HTTP Headers Inspector - All Response Headers & Security

$0.5/1K πŸ”₯ HTTP headers inspector! All response headers, server, cache, CDN & security headers for any URL. No key. JSON, CSV, Excel or API in seconds. Debug & audit any site ⚑

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

HTTP Headers Inspector πŸ”Ž

See every HTTP response header for any URL β€” server, cache, content-type, CDN and security headers β€” with no API key.

HTTP Headers Inspector fetches each URL you give it (real Chrome 124 fingerprint, redirects followed) and returns the complete set of response headers as a clean, lowercased dictionary, plus the headers that matter most pulled out into their own dedicated fields. Point it at one URL or thousands.

No login, no token, no browser automation to configure β€” paste URLs, run, get structured header data.


What you get per URL

FieldDescription
url / final_urlRequested URL and the URL after redirects
status_codeHTTP status (200, 301, 404, …)
http_versionHTTP/1.1, HTTP/2 or HTTP/3
serverServer header value
content_typeContent-Type header
content_lengthContent-Length as an integer
cache_controlCache-Control directives
etag / last_modifiedCache validators
content_encodinggzip / br / deflate
powered_byX-Powered-By (framework/runtime hint)
hstsBoolean β€” is HSTS (Strict-Transport-Security) present?
set_cookie_countNumber of Set-Cookie headers
cdnDetected CDN/edge (Cloudflare, Fastly, CloudFront, Akamai, Vercel…)
all_headersEvery response header as a {lowercased-key: value} dict
source, scraped_atProvenance and UTC timestamp

Input

{
"mode": "inspect",
"urls": ["https://github.com", "https://cloudflare.com"],
"maxItems": 200
}
  • mode β€” inspect (fetch URLs β†’ header objects).
  • urls β€” list of URLs. Bare domains are auto-prefixed with https://.
  • maxItems β€” cap on URLs processed per run (default 200, max 2000).

Example output

{
"url": "https://github.com",
"final_url": "https://github.com/",
"status_code": 200,
"http_version": "HTTP/2",
"server": "github.com",
"content_type": "text/html; charset=utf-8",
"cache_control": "max-age=0, private, must-revalidate",
"hsts": true,
"set_cookie_count": 2,
"cdn": "github",
"all_headers": { "date": "...", "content-type": "text/html; charset=utf-8", "strict-transport-security": "max-age=..." },
"source": "http-headers",
"scraped_at": "2026-07-24T00:00:00+00:00"
}

Use cases

  • Tech audits β€” fingerprint the server, framework (x-powered-by) and HTTP version across a list of sites.
  • CDN & cache debugging β€” check cache-control, etag, x-cache, cf-cache-status and which CDN is in front of each origin.
  • Security review β€” confirm HSTS is set, spot missing security headers, and audit set-cookie counts at scale.
  • Dev QA β€” verify deploys return the expected status, content-type and caching headers before and after a release.

Pricing

Runs on Apify's pay-per-usage. Inspecting headers is a single lightweight request per URL, so typical cost is about ~$0.5 per 1,000 URLs depending on response sizes and your plan. No third-party API key required.



Notes

  • Uses curl_cffi with Chrome 124 impersonation and falls back to urllib if needed.
  • Every field is nullable; failed fetches return a row with an error message rather than crashing the run.
  • Respect target sites' terms of service and robots policies when inspecting at scale.