Automation and testing
Once a request works, make it work for you. Echo automates the repetitive parts: running suites, chaining calls, faking dependencies and checking on a schedule.
Run a whole collection
The collection runner executes a collection end to end:
- Choose the collection and set the number of iterations.
- Add a delay between requests if the target API needs breathing room.
- Turn on abort-on-error if one failure should stop the run.
- Start the run and watch results arrive live.
The runner is the quickest way to smoke test an API after a deploy or to reproduce a flaky behavior across many iterations.
Chain requests without code
Request chains are declarative: no scripting needed. A chain runs steps in order, and each step can extract values from a response with JSONPath and pass them to later steps. Sign in, grab the token, create a resource, verify it, all as one chain.
Steps can also carry conditions, so a chain can branch on what the API actually returned instead of blindly running everything.
Choose where your mock runs
When a real dependency is not ready, a mock lets the frontend team keep working and lets you rehearse timeouts and error codes. Echo matches routes with path patterns, supports static or contract responses, and lets you set delay and status per route.
The desktop can intercept requests sent inside Echo for free. For a URL that another application or teammate can call, use a paid Echo plan to publish a synced mock through the public hosting panel in Maestro. Publishing a team mock needs Echo/ManageHosting; the owner of a personal space can publish its own mock on a paid plan. A public hosted mock keeps responding without the desktop running. See public mock hosting for the publishing steps, public URL access and operational controls.
For rules inside your own .NET application, use Mock.Client or Mock.Server and an application key with ServeMocks on a paid Echo plan. That paid rules feed is separate from the public hosted URL; your application uses its own address.
Check contracts as well as responses
A contract describes the data shape that an application provides or consumes. Publish versions and compare their compatibility in the direction that matters to your application. The Contracts and Testing packages connect publication and validation to .NET automation.
Schedule runs
Cron-scheduled runs check your API while Echo is running. Define the schedule, and Echo notifies you on failure, so a broken endpoint can surface before your users find it. Schedules sync across your signed-in devices, but that sync does not turn them into hosted jobs.
Script when you want to
For the cases that outgrow declarative chains, Echo supports pre-request and post-request JavaScript with the familiar pm.* API, including assertions. If you have written Postman scripts before, the approach is familiar: assert on status codes, response bodies and headers, and fail the run when reality disagrees with expectations.
Reach for chains first because they are easier to read and maintain, and use scripts where you need custom logic.