Before sending an actual request, front-end developers can create a mock server to simulate each endpoint and its corresponding response in a Postman Collection. Developers can view potential responses, without spinning up a back end.
You can create a mock in several ways:
Note: This topic only covers how to create a mock with the New button and the Launch screen. To learn how to create a mock with the Postman app or the Postman API, click its link for detailed information.
In the header toolbar, click the New button.
The Create New tab appears.
Note: At the bottom, you can select “Show this window at launch” to indicate whether you want the Create New tab to display each time you open Postman.
Click “Mock Server”.
Select if you want to mock a new API or an existing or team collection. If you create a new API to mock, you must select a request method and enter the request path, response code, and response body. If you use an existing or team collection to mock, you must select a collection from a list of existing or team collections.
After you select or create the request you want to mock, click the Next button.
In the Configure mock server tab, you must:
Note: The number of calls made to mock servers might be limited by your Postman account. Check your usage limits.
Click the Create button.
In the Next steps tab, see a list of suggested next steps to maximize the effectiveness of your mock server.
The Create New tab appears by default when you launch Postman.
Open the Postman app.
In the Create New tab, click “Mock Server”.
Follow the steps in the previous New button section.
Note: At the bottom, you can select “Show this window at launch” to indicate whether you want the Create New tab to display each time you open Postman.
In addition to using the Postman app to make requests to mock endpoints, you also can make those requests in a browser.
A web browser makes a cross-origin HTTP request when it requests a resource from a domain, protocol, or port that’s different from its own.
Cross-Origin Resource Sharing (CORS) is a standard that defines a way in which a browser and server can interact securely. In this case, we are referring to how a web browser interacts with the mock endpoints hosted on the Postman server.
CORS is enabled for Postman mock servers. As a result, you can stub your web apps with mocked data using the mock endpoints. So development or production web apps can make requests to the Postman mock endpoint you just created and receive an example response.
Your Postman account gives you a limited number of free mock server calls per month.
You can check your usage limits in the Postman API or in the account usage page.
For more information about mock servers, see: