You made a request using the GET verb to /.
No parameters were supplied.
Click here to return to the submitting page.
This is an echo service: it reports back the HTTP method, path, query string parameters, and request body of whatever request you send it. Nothing is stored, forwarded, or logged anywhere.
Tables will appear above only when there's something to show. No query string means no Query Params table, and no request body means no Body Params table. When there is a body, it's rendered differently depending on its shape: a key/value table for a JSON object, an indexed table for a JSON array, or a single value for anything else (a plain string, number, boolean, etc.).
By default you get this HTML page. Ask for JSON instead by sending an
Accept: application/json header. The JSON response looks like:
{ "path": "...", "method": "...", "query": { ... }, "body": ... }
Some example curl commands against this same path:
curl "http://new-echo.trex-sandwich.com/?name=ictg&tags=a&tags=b" \
-H "Accept: application/json"
curl -X POST "http://new-echo.trex-sandwich.com/" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "ictg", "tags": ["a", "b"]}'