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

# Get environment listing

> Retrieve the listing details for a specific environment



## OpenAPI

````yaml https://console.gputrader.io/assets/gputrader-api.json get /environments/{envId}/listing
openapi: 3.1.1
info:
  title: GPU Trader API
  version: 0.4.16
  description: This is the Swagger/OpenAPI-compatible GPUTrader API documentation
servers:
  - url: https://api.gputrader.io/v1
security: []
tags: []
paths:
  /environments/{envId}/listing:
    get:
      tags:
        - Environments
      summary: Get environment listing
      description: Retrieve the listing details for a specific environment
      parameters:
        - in: path
          name: envId
          required: true
          schema:
            type: string
          description: Environment ID
      responses:
        '200':
          description: Successfully retrieved environment listing
          content:
            application/json:
              schema:
                type: object
                properties:
                  envId:
                    type: string
                    description: Environment identifier
                  availabilityWindows:
                    type: object
                    description: Availability windows configuration
                  pricing:
                    type: object
                    description: Pricing configuration
                  selectedGPUs:
                    type: number
                    description: Number of GPUs selected by user (only present in rentals)
                  totalGPUs:
                    type: number
                    description: Total number of GPUs on the device
                  availableGPUs:
                    type: number
                    description: Number of GPUs currently available for rental
                  totalCPUs:
                    type: number
                    description: Total CPU cores in GB
                  totalRAM:
                    type: number
                    description: Total RAM in GB
                  totalStorage:
                    type: number
                    description: Total storage in GB
                  gpuName:
                    type: string
                    description: Name of the GPU model
                  gpuInterconnect:
                    type: string
                    description: GPU interconnect specification
                  gpuVRAM:
                    type: number
                    description: GPU VRAM capacity
                  gpuCUDA:
                    type: string
                    description: CUDA version/capability
                  gpuBandwidth:
                    type: number
                    description: GPU bandwidth
                  location:
                    type: string
                    description: Physical location of the environment
                  networkUploadSpeed:
                    type: number
                    description: Network upload speed
                  networkDownloadSpeed:
                    type: number
                    description: Network download speed
                  type:
                    type: object
                    description: Listing type configuration
                  activeRentalIds:
                    type: object
                    description: Active rental IDs configuration
                  isListed:
                    type: boolean
                    description: Whether the environment is listed
                  updatedAt:
                    type: string
                    format: date-time
                    description: Last update timestamp
        '404':
          description: Environment listing not found
        '500':
          description: Internal server error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````