🔍 HTTP Headers Inspector

Inspect HTTP response headers for any URL. Check status code, cache-control, security headers, and content type. Free online HTTP header checker tool — no signup.

How to Use

1

Paste your headers

Copy HTTP response headers from your browser DevTools (Network tab → Response Headers) and paste them here.

2

Inspect the results

Click Inspect to categorize headers: Security, Caching, CORS, Content-Type, and more.

3

Read the descriptions

Each header row includes a description explaining what it does and why it matters for web performance and security.

Frequently Asked Questions

Where do I find HTTP headers to paste? +
In Chrome/Firefox DevTools (F12) → Network tab → click any request → Headers tab. Or use curl -v https://example.com and copy the response headers (lines after < that start with a header name).
What are the most important security headers? +
Key security headers include: Strict-Transport-Security (HSTS — forces HTTPS), Content-Security-Policy (prevents XSS), X-Content-Type-Options: nosniff (prevents MIME sniffing), X-Frame-Options (prevents clickjacking), and Referrer-Policy.
What does Cache-Control: max-age mean? +
max-age=N tells the browser to cache the response for N seconds. For example max-age=3600 caches for 1 hour. Combined with public or private, it controls whether CDNs and proxies can also cache the response.
What are CORS headers? +
CORS (Cross-Origin Resource Sharing) headers like Access-Control-Allow-Origin control which websites can make cross-origin requests to your server. They are required for browser-based API calls from a different domain.
What is the Vary header used for? +
The Vary header tells caches which request headers affect the response. Vary: Accept-Encoding means different cached versions exist for gzip vs non-gzip responses. Vary: Accept-Language creates separate caches per language.


Tam Rehber: HTTP Başlıkları Denetleyicisi

HTTP Başlıkları Denetleyicisi, herhangi bir URL için yanıt başlıklarını alır ve açıklamalarla birlikte okunabilir bir biçimde sunar. Tek satır kod yazmadan bir sitenin güvenlik duruşunu, önbellekleme stratejisini ve CORS yapılandırmasını denetlemenin en hızlı yollarından biridir.

En Önemli Güvenlik Başlıkları

Önbellekleme Başlıkları

CORS Başlıkları

Çapraz kaynaklı kaynak paylaşımı başlıkları, hangi harici etki alanlarının API'nize istek yapabileceğini kontrol eder:

Vary Başlığını Okuma

Vary başlığı, yanıtın belirli istek başlıklarına göre farklılık gösterebileceğini önbelleklere bildirir. Vary: *, CDN'ler gibi paylaşılan önbelleklerde önbelleklemeyi etkin biçimde devre dışı bırakır.

HTTPS Yönlendirme Zincirleri

Denetleyici yönlendirme zincirlerini takip eder ve her atlamayı gösterir. İyi yapılandırılmış bir site, http:// adresini tek bir 301 ile https:// adresine yönlendirmelidir. Birden fazla ardışık 301 görürseniz, her ilk ziyarette gereksiz bir ağ gidiş-dönüşü harcıyorsunuz demektir.

İlgili Araçlar

Denetleyicinin yaptığı tam isteği yeniden oluşturmak için eşdeğer komutu cURL'den Koda dönüştürücüye kopyalayın. Base64 kodlamalı başlık değerleriyle karşılaşırsanız, yükü incelemek için Base64 Kodlayıcı'yı kullanın.

🧰 50+ Tools