> ## 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 outbound IPs

> Get the current outbound IP addresses QA.tech test runners use, for firewall rules and allowlists. No authentication required.



## OpenAPI

````yaml /api-reference/api.json get /v1/outbound-ips
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/outbound-ips:
    get:
      tags:
        - Infrastructure
      summary: Get outbound IPs
      description: >-
        Get the current outbound IP addresses QA.tech test runners use, for
        firewall rules and allowlists. No authentication required.
      operationId: GetOutboundIps
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OutboundIpsResponse'
      security:
        - {}
components:
  schemas:
    OutboundIpsResponse:
      type: object
      required:
        - ipAddresses
        - webIpAddresses
        - mobileIpAddresses
      properties:
        ipAddresses:
          type: array
          items:
            type: string
          description: >-
            Combined list of all QA.tech outbound IP addresses (web + mobile).
            Use this if you want a single allowlist.
        webIpAddresses:
          type: array
          items:
            type: string
          description: Web testing outbound IP addresses only.
        mobileIpAddresses:
          type: array
          items:
            type: string
          description: >-
            Mobile testing outbound IP addresses only (Appetize streaming
            servers).
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````