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

# List templates

> Returns curated AI Reserve templates and private organization templates. Response shape: `{ data: ComputeTemplate[], nextCursor?: string }`. Requires compute `read` access.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/templates
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:
    get:
      tags:
        - GPU Compute
      summary: List templates
      description: >-
        Returns curated AI Reserve templates and private organization templates.
        Response shape: `{ data: ComputeTemplate[], nextCursor?: string }`.
        Requires compute `read` access.
      responses:
        '200':
          description: Template list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ComputeTemplate'
                  nextCursor:
                    type: string
                    nullable: true
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).

````