> ## Documentation Index
> Fetch the complete documentation index at: https://docs.symmetry.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Postman environment

> Returns the Postman environment for STE Hosted.



## OpenAPI

````yaml /ste/api-reference/ste-hosted-api.yaml get /postman/environment
openapi: 3.0.3
info:
  title: STE Hosted API
  description: Symmetry Tax Engine Hosted API
  version: all
  termsOfService: https://www.symmetry.com/terms
  contact:
    name: Symmetry Website
    url: https://www.symmetry.com/
servers:
  - url: https://ste.symmetry.com/ste-hosted
security:
  - apiKey: []
tags:
  - name: Account Information and Schema
    description: Account information and schema retrieval endpoints
  - name: Benefits
    description: Employee benefits status and information
  - name: Location Code
    description: Location code lookup
  - name: Location Tax Information
    description: Location-based tax information and configuration
  - name: Payroll Calculations
    description: Payroll tax calculation endpoints
  - name: Tax Information
    description: Tax ID and reference information
  - name: STEVersions
    description: Installed STE database version discovery
  - name: API Specification
    description: API Specification helper endpoints
  - name: Postman
    description: Resources for Postman
paths:
  /postman/environment:
    get:
      tags:
        - Postman
      summary: Postman environment
      description: Returns the Postman environment for STE Hosted.
      operationId: getPostmanEnvironment
      responses:
        '200':
          description: Postman environment JSON file
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key for authentication. Provide the raw key as the value of the
        Authorization header (no "Bearer" prefix).

````