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","host":"postman-echo.com","accept":"*/*","accept-encoding":"gzip, deflate","cache-control":"no-cache","postman-token":"5c27cd7d-6b16-4e5a-a0ef-191c9a3a275f","user-agent":"PostmanRuntime/7.6.1","x-forwarded-port":"443"},"url":"https://postman-echo.com/get?foo1=bar1\u0026foo2=bar2"}