What does this tool do?
The HTTP Methods Reference collects GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS, CONNECT and TRACE into one searchable list. For each method it shows whether it is safe, idempotent and carries a body, along with typical response codes, helping anyone building REST APIs pick the right verb.
How to use it
- Enter an address, domain or value.
- View the results instantly.
- Copy the details you need.
What safe and idempotent mean
A safe method does not change server state; GET, HEAD and OPTIONS fall into this group. An idempotent method means sending the same request once or many times has the same effect on the server; PUT and DELETE are idempotent, while POST and PATCH usually are not. These two properties matter for caching, retry logic and API design, and they appear as badges next to every method in the list so you can compare them at a glance.
Choosing the right method
Use GET to read data, POST to create a new resource, PUT to replace a resource entirely, PATCH for partial updates and DELETE to remove it. HEAD is useful for fetching only headers, and OPTIONS reports supported methods and powers CORS preflight. Type a method name or a word from its description into the search box to filter the list instantly, and use the copy button to put the verb on your clipboard for quick reuse in code or docs.
Frequently asked questions
What is the difference between PUT and PATCH?
PUT replaces a resource entirely with the body you send and is idempotent. PATCH applies a partial update, changing only the fields you specify, and is usually not idempotent.
Which methods can carry a request body?
In the list, POST, PUT and PATCH are marked as able to carry a body. GET, HEAD, DELETE, OPTIONS, CONNECT and TRACE typically do not use a meaningful request body.
What are CONNECT and TRACE used for?
CONNECT establishes a tunnel to the target server through a proxy and is mainly used for HTTPS. TRACE performs a loop-back test that echoes the request back for debugging purposes.
Is HTTP Methods Reference free?
Yes. HTTP Methods Reference and all 300+ tools on MagmaNex are completely free with no signup or account required.
Is my data safe?
Yes. Everything runs locally in your browser. The data you enter is never sent to a server, stored, or shared.
Does it work on mobile?
Yes. HTTP Methods Reference works on phones, tablets and desktops — no app download needed.
🔒 Privacy: everything runs in your browser, your data is never sent to a server.
