HTTP Reference Tools
HTTP Methods Dashboard
Look up any HTTP method to understand its purpose, safety, idempotency and recommended developer action privately in your browser.
HTTP Method Reference
Look up any HTTP method to understand its purpose, safety, idempotency and recommended use - backed by deterministic local reference data.
This dashboard runs entirely from local reference data in your browser. Nothing you type is transmitted, stored, or used to make network requests.
9
Total methods
4
Safe
6
Idempotent
2
Cacheable
Retrieval & Inspection
Retrieval & Inspection
GET
Retrieve a representation of a resource without causing side effects.
SafeIdempotentCacheable
- Typical request body
- Not typically used
- Typical response body
- Typical
- Common use cases
- Fetching pages, API resources, search results, and any read-only lookup.
- Common mistakes
- Using GET for actions that create, modify or delete data, or putting sensitive data in the query string where it can be logged, cached or bookmarked.
- Recommended developer action
- Use GET only for safe, read-only requests; move any state-changing action to POST/PUT/PATCH/DELETE and keep sensitive data out of the URL.
- Standard reference
- RFC 9110 §9.3.1
Related methods
Search and filter
Search by method name (for example “patch”) or by phrase (for example “tunnel” or “idempotent”).
Browse by category
Method library
All HTTP methods
9 of 9 methods