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

# Get pod connections

> Returns SSH connection details and public proxy URLs for a running pod. Returns `{ available: false }` when the pod is not yet running. Requires compute `manage` access.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/pods/{id}/connections
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve API surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, files,
    text-to-speech, realtime voice sessions, and GPU Compute pod/volume
    management — all behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /v1/gpu/pods/{id}/connections:
    get:
      tags:
        - GPU Compute
      summary: Get pod connections
      description: >-
        Returns SSH connection details and public proxy URLs for a running pod.
        Returns `{ available: false }` when the pod is not yet running. Requires
        compute `manage` access.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Connection details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputePodConnections'
        '403':
          description: Compute `manage` access required.
        '404':
          description: Pod not found.
components:
  schemas:
    ComputePodConnections:
      type: object
      description: Connection details for a running pod. Requires compute `manage` access.
      properties:
        available:
          type: boolean
          description: >-
            `true` when the pod is running and has connection details. `false`
            when the pod is not yet running.
        sshConnectString:
          type: string
          nullable: true
          description: Full `ssh` command to connect. Copy and run directly.
        sshUser:
          type: string
          nullable: true
        sshHost:
          type: string
          nullable: true
        sshPort:
          type: integer
          nullable: true
        proxyUrls:
          type: object
          additionalProperties:
            type: string
          description: >-
            Map of container port numbers to public proxy URLs
            (`https://{podId}-{port}.proxy.runpod.net`). These URLs are publicly
            accessible — not protected by AI Reserve authentication.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from the API Keys page in the
        portal (https://portal.aireserve.com/keys).

````