🛠️ToolsShed

HTTP-Methoden-Referenz

Vollständiger Leitfaden zu HTTP-Methoden — GET, POST, PUT, DELETE, PATCH und mehr.

GETSicher: JaIdempotent: Ja

Retrieves a resource without modifying server state. The most commonly used HTTP method.

Anwendungsfall: Fetching a webpage, API data, or file.

POSTSicher: NeinIdempotent: Nein

Submits data to the server to create a new resource or trigger a process.

Anwendungsfall: Form submission, creating a new record via API.

PUTSicher: NeinIdempotent: Ja

Replaces the entire target resource with the request payload.

Anwendungsfall: Updating a user profile — replaces all fields.

PATCHSicher: NeinIdempotent: Nein

Partially modifies a resource — only sends the fields that need updating.

Anwendungsfall: Updating only the email of a user record.

DELETESicher: NeinIdempotent: Ja

Removes the target resource from the server.

Anwendungsfall: Deleting a blog post or API record.

HEADSicher: JaIdempotent: Ja

Same as GET but returns only headers, not the response body.

Anwendungsfall: Checking if a URL exists or getting Content-Length.

OPTIONSSicher: JaIdempotent: Ja

Describes the communication options for the target resource. Used in CORS preflight.

Anwendungsfall: CORS preflight requests.

TRACESicher: JaIdempotent: Ja

Performs a message loop-back test along the path to the target resource.

Anwendungsfall: Debugging proxy chains (rarely used, often disabled).

CONNECTSicher: NeinIdempotent: Nein

Establishes a tunnel to the server identified by the target resource.

Anwendungsfall: HTTPS tunneling through HTTP proxies.

Comments & Feedback

Comments are powered by Giscus. Sign in with GitHub to leave a comment.