Skip to content

List Ad Clones

FreshGET
GET https://api.creatify.ai/api/ad_clone/

Retrieve a list of all ad clone tasks.

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key

Example Request

bash
curl -X GET 'https://api.creatify.ai/api/ad_clone/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
[
  {
    "id": "clone-001",
    "status": "done",
    "source_url": "https://example.com/original-ad",
    "output": "https://cdn.creatify.ai/ad-clone/clone-001.mp4",
    "created_at": "2024-01-15T10:30:00Z"
  }
]

Status Codes

CodeDescription
200Success
401Unauthorized -- invalid API credentials
429Rate limit exceeded
500Internal server error