How to use
- Click any method badge (GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS) to select it.
- Read the detail card showing the use case and safe/idempotent/cacheable/body flags.
- Scan the comparison table to see all methods side by side at a glance.
- Use the legend at the top to understand what each flag means.
Examples
- Selecting DELETE shows: idempotent yes, safe no, cacheable no — repeating the call leaves the same server state after the resource is gone.
- Comparing GET vs POST in the table immediately shows GET is safe and cacheable while POST is neither.