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

# Copy a system strategy template into the workspace

> Creates a draft strategy from a system template. Finalize the version before running backtests.



## OpenAPI

````yaml /openapi/traseq-public-agent.json post /public/v1/system-strategies/{key}/copy
openapi: 3.0.0
info:
  title: Traseq Agent API
  description: >-
    Public, versioned API for external integrations and AI agents. Includes API
    key management and machine-readable OpenAPI.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: API Keys
    description: Workspace-scoped API key management
  - name: Agent API
    description: Public API for external integrations and AI agents
paths:
  /public/v1/system-strategies/{key}/copy:
    post:
      tags:
        - Agent API
      summary: Copy a system strategy template into the workspace
      description: >-
        Creates a draft strategy from a system template. Finalize the version
        before running backtests.
      operationId: PublicOpenApiController_copySystemStrategy
      parameters:
        - name: key
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  maxLength: 100
                  example: EMA crossover template copy
                description:
                  type: string
                  maxLength: 1000
                  example: Workspace-local copy of the EMA crossover template
      responses:
        '201':
          description: Strategy draft created from template
      security:
        - traseq-api-key: []
components:
  securitySchemes:
    traseq-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: Workspace API key for public agent API access

````