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

# List managed templates

> Retrieve all managed system templates



## OpenAPI

````yaml https://console.gputrader.io/assets/gputrader-api.json get /templates/managed
openapi: 3.1.1
info:
  title: GPU Trader API
  version: 0.4.16
  description: This is the Swagger/OpenAPI-compatible GPUTrader API documentation
servers:
  - url: https://api.gputrader.io/v1
security: []
tags: []
paths:
  /templates/managed:
    get:
      tags:
        - Templates
      summary: List managed templates
      description: Retrieve all managed system templates
      responses:
        '200':
          description: Successfully retrieved managed templates
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                      description: Name of the template
                    createdAt:
                      type: string
                      format: date-time
                      description: Creation timestamp of the template
                    version:
                      type: number
                      description: Version number of the template
                    description:
                      type: string
                      description: Description of the template
                    managedTemplateId:
                      type: string
                      description: Unique identifier for the managed template
                    content:
                      type: string
                      description: Template content
                    updatedAt:
                      type: string
                      format: date-time
                      description: Last update timestamp of the template
                    logo:
                      type: string
                      description: URL or identifier for the template logo
                    link:
                      type: string
                      description: Related link for the template
                    environmentVariables:
                      type: array
                      description: Array of environment variable arrays
                    isBasicAuthEnabled:
                      type: boolean
                      description: Indicates if basic authentication is enabled
                    isSSHEnabled:
                      type: boolean
                      description: Indicates if SSH is enabled
                    insecure:
                      type: boolean
                      description: Indicates if the template has insecure settings
        '500':
          description: Internal server error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````