About 1,660,000 results
Open links in new tab
  1. HTTP Request Methods – Get vs Put vs Post Explained with Code Examples

    Jan 26, 2022 · To make a GET request to retrieve all of a specific users’ gists, we can use the following method and endpoint: GET /users/{username}/gists. The documentation tells us the …

  2. HTTP Methods GET vs POST - W3Schools

    GET is used to request data from a specified resource. Note that the query string (name/value pairs) is sent in the URL of a GET request: …

  3. Different kinds of HTTP requests - GeeksforGeeks

    Apr 10, 2025 · HTTP (Hypertext Transfer Protocol) specifies a collection of request methods to specify what action is to be performed on a particular resource. The most commonly used …

  4. GET - HTTP | MDN - MDN Web Docs

    Mar 13, 2025 · Identifies the target resource of the request when combined with the information provided in the Host header. This is an absolute path (e.g., /path/to/file.html) in requests to an …

  5. Format of an HTTP get request - Stack Overflow

    Jan 17, 2014 · Passing parameters in the requested URL is not the only way to send parameters in an HTTP request, though. Another option is to use the application/x-www-form-urlencoded …

  6. HTTP Methods - REST API Tutorial

    Nov 4, 2023 · Use GET requests to retrieve resource representation/information only – and not modify it in any way. As GET requests do not change the resource’s state, these are said to be …

  7. GET - Expert Guide to HTTP methods

    Jan 1, 2021 · The HTTP GET method is a type of HTTP request that is used to retrieve a representation of a resource from a server. This is the primary operation used for retrieving …

  8. How do I send a GET request? - ReqBin

    Jul 1, 2023 · HTTP GET request method is used to retrieve data from a specified URL. The GET is the most popular HTTP request method. GET requests should only receive data and should …

  9. Guide to HTTP: GET Requests, POST Requests & More | Linode Docs

    Jun 12, 2023 · What Is a HTTP GET Request? An HTTP GET request (http_get_request) is a message from a client, typically a web browser, to a server using HTTP1.1 or HTTP/2. The …

  10. 5 Ways to Make HTTP GET Requests - Apidog

    Nov 29, 2024 · Here's an example of a simple GET request: Explanation: GET: The HTTP method indicates that the client wants to retrieve data. /path/to/resource: The path of the resource on …