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

# Duplicate Task

> **Required plan:** Standard, Professional, or Enterprise.

Duplicate a task to a specified group.



## OpenAPI

````yaml /en/api/openapi.json post /task/copy
openapi: 3.0.1
info:
  title: Octoparse API
  description: >-
    Octoparse OpenAPI allows you to programmatically manage tasks, run Cloud
    Extractions, and retrieve scraped data. Base URL:
    `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Octoparse API Server
security: []
paths:
  /task/copy:
    post:
      tags:
        - Task
      summary: Duplicate Task
      description: |-
        **Required plan:** Standard, Professional, or Enterprise.

        Duplicate a task to a specified group.
      operationId: duplicateTask
      parameters:
        - name: taskId
          in: query
          required: true
          schema:
            type: string
          description: ID of the task to duplicate
        - name: taskGroupId
          in: query
          required: true
          schema:
            type: string
          description: Destination task group ID
      responses:
        '200':
          description: Task duplicated
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      taskId:
                        type: string
                  requestId:
                    type: string
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Send an Octoparse API key in the x-api-key header. Create and manage
        keys in the Octoparse account center. Keys typically start with op_sk_.
    bearerAuth:
      type: http
      scheme: bearer
      description: Use the access_token obtained from POST /token

````