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

# List environment variables



## OpenAPI

````yaml /openapi/v1.json get /projects/{id}/env-vars
openapi: 3.1.0
info:
  title: Bugzy API
  description: >-
    Programmatic access to Bugzy's QA automation capabilities. Trigger test
    runs, query results, manage schedules, and configure event triggers.
  version: 1.0.0
  contact:
    name: Bugzy Support
    url: https://www.bugzy.ai
servers:
  - url: https://bugzy.ai/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{id}/env-vars:
    get:
      tags:
        - Environment Variables
      summary: List environment variables
      operationId: listEnvVars
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: environment_id
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of env var names (never values)
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/EnvVar'
components:
  schemas:
    EnvVar:
      type: object
      properties:
        name:
          type: string
          example: BASE_URL
        has_value:
          type: boolean
        is_secret:
          type: boolean
        environment_id:
          type: string
          format: uuid
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Project API key (bzy_proj_*) for project routes or team API key
        (bzy_team_*) for selected team routes.

````