Converter Web ToolsConverter WebTools

HTTP Methods (Verbs) — GET, POST, PUT, DELETE

This HTTP methods (verbs) reference lists the request methods used by REST APIs and the web — GET, POST, PUT, PATCH, DELETE and more — with whether each is safe (no side effects) and idempotent (repeating gives the same result).

MethodPurposeSafeIdempotent
GETRetrieve dataYesYes
POSTCreate / submit dataNoNo
PUTReplace a resourceNoYes
PATCHPartially updateNoNo
DELETERemove a resourceNoYes
HEADGET headers onlyYesYes
OPTIONSAllowed methodsYesYes
CONNECTOpen a tunnelNoNo
TRACEEcho the requestYesYes

Related tools & charts