Examples of Setting up Environment Variables in Postman

Learn how to set up environment variables in Postman with these practical examples to enhance your API testing workflows.
By Taylor

Introduction to Environment Variables in Postman

Environment variables in Postman are a powerful feature that allows you to store and reuse values across multiple requests. This can be especially useful when you’re working with different environments like development, testing, and production. By using environment variables, you can easily switch between these environments without changing each request manually. In this article, we’ll explore three practical examples of setting up environment variables in Postman that will help streamline your API testing.

Example 1: Storing API Base URL

Context

When testing APIs, it’s common to have different base URLs for various environments (e.g., development, staging, production). Instead of hardcoding these URLs into every request, you can use an environment variable to manage them more efficiently.

Example

  1. Create a new environment in Postman by clicking on the gear icon in the top right corner and selecting ‘Manage Environments’.
  2. Click ‘Add’ to create a new environment, naming it ‘Development’.
  3. Under ‘Variable’, enter baseUrl and set its initial value to https://dev.api.example.com.
  4. Save the environment.
  5. Now, in your requests, replace the hardcoded URL with {{baseUrl}}. For example, instead of https://dev.api.example.com/users, use {{baseUrl}}/users.

Notes

You can create additional environments for staging and production, setting the baseUrl variable accordingly. Switching environments will automatically change the base URL used in your requests.

Example 2: Auth Token Management

Context

When working with APIs that require authentication, managing tokens can become cumbersome. Using an environment variable to store your authentication token simplifies this process.

Example

  1. After successfully authenticating with your API, capture the token from the response. You can do this by adding the following test script in the ‘Tests’ tab:
    `pm.environment.set(