GET - Retrieve Resource in HTTP

From the HTTP Methods cheat sheet · CRUD Methods · verified Jul 2026

GET - Retrieve Resource

javascript
// GET request
fetch('/api/users')
fetch('/api/users/123')
fetch('/api/users?page=2&limit=10')

// Properties
- Safe: Yes
- Idempotent: Yes
- Cacheable: Yes
- Body: No
✅ Safe - doesn't modify data
💡 Use query params for filtering
🔍 Cacheable by default

More HTTP tasks

Back to the full HTTP Methods cheat sheet