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

# List remote tunnels

> List remote tunnels for the authenticated project



## OpenAPI

````yaml /api-reference/api.json get /v1/remote-tunnels
openapi: 3.0.0
info:
  title: QA.tech API
  version: 1.0.0
  contact:
    name: QA.tech
    url: https://qa.tech
    email: support@qa.tech
  description: >-
    REST API for triggering and managing AI-powered test runs. Authenticate with
    a project API token (Authorization: Bearer <token>) found in Project
    Settings -> Integrations.
servers:
  - url: https://api.qa.tech
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Runs
  - name: Infrastructure
  - name: Test Cases
  - name: Application Builds
  - name: Status badge
  - name: Remote Tunnels
  - name: Chat
  - name: Applications
paths:
  /v1/remote-tunnels:
    get:
      tags:
        - Remote Tunnels
      summary: List remote tunnels
      description: List remote tunnels for the authenticated project
      operationId: ListRemoteTunnels
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListRemoteTunnelsResponse'
components:
  schemas:
    ListRemoteTunnelsResponse:
      type: object
      required:
        - tunnels
      properties:
        tunnels:
          type: array
          items:
            $ref: '#/components/schemas/RemoteTunnelSummary'
      description: Response for listing active remote tunnels
    RemoteTunnelSummary:
      type: object
      required:
        - runnerId
        - hostnames
        - createdAt
        - expiresAt
        - isExpired
      properties:
        runnerId:
          type: string
        hostnames:
          type: array
          items:
            $ref: '#/components/schemas/HostnameInfo'
        createdAt:
          type: string
        expiresAt:
          type: string
        isExpired:
          type: boolean
          description: Whether the tunnel is expired (expires_at is in the past)
      description: Summary of an active remote tunnel
    HostnameInfo:
      type: object
      required:
        - localPort
        - url
      properties:
        localPort:
          type: integer
          format: int32
          description: The local port this hostname maps to
        url:
          type: string
          description: The public HTTPS URL for this port
      description: A single hostname mapping returned by the tunnel
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````