HEAD - Get Headers Only in HTTP
From the HTTP Methods cheat sheet · Other HTTP Methods · verified Jul 2026
HEAD - Get Headers Only
javascript
// HEAD request
fetch('/api/users', {
method: 'HEAD'
})
// Properties
- Safe: Yes
- Idempotent: Yes
- Cacheable: Yes
- Body: No📋 Same as GET but no body
💡 Useful for checking existence
⚡ Saves bandwidth