GET Request
GET https://postman-echo.com/get?foo1=bar1&foo2=bar2
The HTTP GET
request method is meant to retrieve data from a server. The data
is identified by a unique URI (Uniform Resource Identifier).
A GET
request can pass parameters to the server using Query String
Parameters
. For example, in the following request,
The parameter hand
has the value wave
.
This endpoint echoes the HTTP headers, request parameters and the complete URI requested.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
foo1 | string | ||
foo2 | string |
RESPONSES
status: OK
{"args":{"foo1":"bar1","foo2":"bar2"},"headers":{"x-forwarded-proto":"https","x-forwarded-port":"443","host":"postman-echo.com","x-amzn-trace-id":"Root=1-626923fd-75e9aabc4772053e5814559f","user-agent":"PostmanRuntime/7.29.0","accept":"*/*","cache-control":"no-cache","postman-token":"85aa3631-e06b-4859-bb26-a928f6a1c221","accept-encoding":"gzip, deflate, br"},"url":"https://postman-echo.com/get?foo1=bar1\u0026foo2=bar2"}