> ## 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.

# Get remote tunnel status

> Get the live Cloudflare health status of a remote tunnel



## OpenAPI

````yaml /api-reference/api.json get /v1/remote-tunnels/{runnerId}/status
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: API for triggering and managing AI-powered test runs
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
  - name: Features
  - name: Metrics
  - name: Release Checks
  - name: Projects
paths:
  /v1/remote-tunnels/{runnerId}/status:
    get:
      tags:
        - Remote Tunnels
      summary: Get remote tunnel status
      description: Get the live Cloudflare health status of a remote tunnel
      operationId: GetRemoteTunnelStatus
      parameters:
        - name: runnerId
          in: path
          required: true
          schema:
            type: string
        - name: query
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/ProjectScopedRequest'
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RemoteTunnelStatusResponse'
components:
  schemas:
    ProjectScopedRequest:
      type: object
      properties:
        projectShortId:
          allOf:
            - $ref: '#/components/schemas/ProjectShortId'
          description: >-
            Target a specific project by its prefixed short ID
            (proj-slug_shortId or proj_shortId), as returned by the projects
            API. Required for organization-scoped API keys; project-scoped keys
            may only pass their own project's short ID.
      description: >-
        Mixin for project-scoped requests: an optional per-call project
        override.
    RemoteTunnelStatusResponse:
      type: object
      required:
        - status
        - connections
        - hostnames
      properties:
        status:
          type: string
          enum:
            - inactive
            - degraded
            - healthy
          description: >-
            inactive = no connections, degraded = 1-3 connections, healthy = 4+
            connections
        connections:
          type: integer
          format: int32
          description: Number of active Cloudflare edge connections
        hostnames:
          type: array
          items:
            $ref: '#/components/schemas/HostnameInfo'
          description: Public hostnames for this tunnel
      description: Live health status of a remote tunnel from Cloudflare
    ProjectShortId:
      type: string
      pattern: ^proj(-.+_.+|_.+)$
    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

````