You can use the Postman Echo service to test requests in Postman. The Echo service returns a JSON response that includes all details from the request you sent, including any data items you included.
Many Postman learning resources, including the documentation here in the Learning Center, use the Echo service because it provides a quick way to send a request without worrying about authentication or request configuration. If you want to learn how to do something in Postman without connecting to a "real" API, you can use the Echo service.
The Echo API includes endpoints to test different request methods, parameters, authentication, and a variety of supporting utilities.
To test the Echo API in a REST request, do the following:
Open a new request in Postman and enter the path https://postman-echo.com/get
in the URL box:
Select the GET
method, then select Send.
The Echo API will return a JSON object that has details from the request.
You can also use the Postman echo service with protocols other than REST:
https://graphql.postman-echo.com/graphql
grpc.postman-echo.com
wss://ws.postman-echo.com/raw
wss://ws.postman-echo.com/socketio
To continue working with the Echo service:
Last modified: 2023/07/31
Additional resources
Blog posts