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

More HTTP tasks

Back to the full HTTP Methods cheat sheet