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

# Duplicate Landing Page

> Copy an existing landing page into a new draft

Duplicate a landing page instead of rebuilding it from scratch. The copy is
always created as a draft with its own slug, views, and conversions, so the
original keeps its published URL and stats.

## Request

<ParamField path="landingPageId" type="string" required>
  ID of the landing page to copy.
</ParamField>

<ParamField body="name" type="string">
  Name for the copy. Defaults to the original name with a `(copy)` suffix.
</ParamField>

<ParamField body="slug" type="string">
  URL slug for the copy. It is normalized and made unique within the company.
  Defaults to a slug generated from the copy's name.
</ParamField>

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/landing-pages/lp_abc123/duplicate" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Spring Sale v2", "slug": "spring-sale-v2"}'
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "landingPage": {
      "id": "lp_def456",
      "name": "Spring Sale v2",
      "slug": "spring-sale-v2",
      "status": "draft",
      "viewCount": 0,
      "conversionCount": 0,
      "appPublicUrl": null,
      "publicUrl": null
    },
    "message": "Landing page duplicated as a draft. Use publish_landing_page when the copy is ready to go live."
  }
  ```

  ```json 400 theme={null}
  {
    "success": false,
    "error": "Landing page name cannot be empty."
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Landing page not found"
  }
  ```
</ResponseExample>
