Skip to main content
POST
https://app.pixy.art
/
api
/
v1
/
{designId}
/
duplicate
cURL
curl --request POST \
  --url https://app.pixy.art/api/v1/{designId}/duplicate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Copy for campaign B"
}
'
{
  "id": "des_copy_123",
  "name": "Copy for campaign B",
  "thumbnail": "https://assets.example.com/designs/copy.png",
  "createdAt": "2026-05-19T10:00:00.000Z",
  "updatedAt": "2026-05-19T10:00:00.000Z",
  "userId": "user_123",
  "size": {
    "width": 1080,
    "height": 1080
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pixy.art/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Organization API key passed as a bearer token.

Path Parameters

designId
string
required

Pixy design or public template identifier to copy.

Body

application/json
name
string

Optional name for the copied design. Defaults to Copy of {source name}.

Example:

"Copy for campaign B"

Response

Successfully duplicated the design.

id
string
required

Design identifier.

name
string | null
required

Design name.

thumbnail
string<uri> | null
required

Design thumbnail URL.

createdAt
string<date-time>
required
updatedAt
string<date-time>
required
userId
string | null
required

Embedder-provided user id saved on this design.

size
object
required