reqsh currently supports GET, POST, PUT, PATCH, and DELETE but is missing HEAD and OPTIONS both are standard HTTP methods used in REST APIs.
HEAD fetches response headers without the body (useful for checking resource existence, content-length or last-modified without downloading)
OPTIONS returns the supported methods and CORS headers for an endpoint
reqsh currently supports
GET,POST,PUT,PATCH, andDELETEbut is missingHEADandOPTIONSboth are standard HTTP methods used in REST APIs.HEADfetches response headers without the body (useful for checking resource existence, content-length or last-modified without downloading)OPTIONSreturns the supported methods and CORS headers for an endpoint