The NativeRest Echo API is a free, publicly available testing service designed to help developers verify and debug their API requests. Just like a mirror, the Echo API reflects exactly what you send to it, allowing you to easily inspect the headers, query parameters, and data payloads that NativeRest is transmitting.
All API requests should be directed to the following base URL:
https://nativerest.net/echo/get

Use this endpoint to test URL query parameters.
Perfect for testing data payloads, including raw JSON, XML, or x-www-form-urlencoded forms.
Ideal for simulating resource updates.
Use this to test your resource removal logic.
Since the Echo API provides highly predictable responses, it is the best place to learn NativeRest's testing capabilities.
Try sending a GET request to https://nativerest.net/echo/get?status=active and paste the following snippet into the Tests tab in NativeRest:
# Response status code is 200
response.status == 200
# Response time is less than 1000 ms
response.time < 1000
When you click Send, NativeRest will execute the script and display green checkmarks in the Test Results panel, confirming your logic works!