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

> Returns a curated or organization-owned template.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/templates/{id}
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/templates/{id}:
    get:
      tags:
        - GPU Compute
      summary: Get template
      description: Returns a curated or organization-owned template.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Template.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputeTemplate'
        '404':
          description: Template not found.
components:
  schemas:
    ComputeTemplate:
      type: object
      required:
        - id
        - name
        - curated
        - imageName
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        curated:
          type: boolean
          description: >-
            True for AI Reserve-managed curated templates. Curated templates are
            read-only.
        kind:
          type: string
          enum:
            - curated
            - tenant
        imageName:
          type: string
        containerDiskGb:
          type: integer
        envKeys:
          type: array
          items:
            type: string
          description: >-
            Documented environment variable names. Values are encrypted and
            never returned.
        ports:
          type: array
          items:
            type: object
            properties:
              port:
                type: integer
              protocol:
                type: string
        capabilities:
          type: object
          properties:
            hasSsh:
              type: boolean
            hasJupyter:
              type: boolean
            hasTerminal:
              type: boolean
            hasWebApp:
              type: boolean
        isActive:
          type: boolean
  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).

````