HTTP Methods Reference

The HTTP Methods Reference summarizes what each verb means, its idempotence and when to use it, so your API stays predictable.

Contents

Key Features

Use Cases

How to Use

  1. Pick a method
  2. Read its semantics
  3. Apply it to your route

Practical Tips

FAQ

PUT vs POST?
PUT targets a known URI; POST creates.
Idempotent?
Safe to retry without extra effect.
← Back to Guides