api: "YAML JSON TOON Database" version: 1.0.0 format: json dataset: id: 12 slug: http-methods-reference title: "HTTP Methods Reference" description: "Standard HTTP request methods: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS, TRACE with safety, idempotency, and body characteristics." category: "HTTP Status Codes" category_slug: http-status-codes tags: "http,methods,rest,web" view_count: 0 created_at: 1777673262 updated_at: 1777673262 data: methods [8]{method,safety,idempotent,body,purpose}: GET,Safe,true,No,"Retrieve a resource" POST,Unsafe,false,Yes,"Create a resource" PUT,Unsafe,true,Yes,"Replace a resource" PATCH,Unsafe,false,Yes,"Partially modify a resource" DELETE,Unsafe,true,Maybe,"Delete a resource" HEAD,Safe,true,No,"GET without response body" OPTIONS,Safe,true,No,"Describe communication options" TRACE,Safe,true,No,"Echo request for diagnostic"