Create Ad Clone
FreshPOSTPOST 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
| Name | Type | Required | Description |
|---|---|---|---|
source_url | string | Yes | URL of the ad to clone as a reference |
product_url | string | No | Your product URL to feature in the cloned ad |
aspect_ratio | string | No | Output aspect ratio |
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Content-Type | string | Yes | application/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
| Code | Description |
|---|---|
201 | Task created successfully |
400 | Bad request -- invalid URL |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
429 | Rate limit exceeded |
500 | Internal 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.