Skip to content

Create Ad Clone

FreshPOST
POST https://api.creatify.ai/api/ad_clone/

Clone an existing ad. Provide a reference ad URL and Creatify will analyze its style, structure, and messaging to create a similar ad for your product.

Request Body

NameTypeRequiredDescription
source_urlstringYesURL of the ad to clone as a reference
product_urlstringNoYour product URL to feature in the cloned ad
aspect_ratiostringNoOutput aspect ratio

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key
Content-TypestringYesapplication/json

Example Request

bash
curl -X POST 'https://api.creatify.ai/api/ad_clone/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key' \
  -H 'Content-Type: application/json' \
  -d '{
    "source_url": "https://example.com/competitor-ad",
    "product_url": "https://example.com/my-product",
    "aspect_ratio": "9:16"
  }'

Response

json
{
  "id": "clone-001",
  "status": "pending",
  "source_url": "https://example.com/competitor-ad",
  "created_at": "2024-01-15T10:30:00Z"
}

Status Codes

CodeDescription
201Task created successfully
400Bad request -- invalid URL
401Unauthorized -- invalid API credentials
402Insufficient credits
429Rate limit exceeded
500Internal server error

TIP

Ad Clone analyzes the visual style, pacing, and structure of the source ad. It creates a new ad with your product information while maintaining the proven creative approach of the original.

WARNING

Ad cloning is intended for creative inspiration. Ensure your cloned ads comply with advertising regulations and do not infringe on trademarks or copyrights.