Skip to content

Regenerate Product Video

FreshPOST
POST https://api.creatify.ai/api/product_to_videos/{id}/regen_video/

Regenerate the product video with a different variation. Use this when the initial generated video does not meet your requirements.

Credit Cost

1 credit per request

Path Parameters

NameTypeRequiredDescription
idstringYesThe product video task ID

Headers

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

Example Request

bash
curl -X POST 'https://api.creatify.ai/api/product_to_videos/ptv-001/regen_video/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "id": "ptv-001",
  "status": "processing",
  "video_url": null,
  "created_at": "2024-01-15T10:30:00Z"
}

When processing completes:

json
{
  "id": "ptv-001",
  "status": "done",
  "video_url": "https://cdn.creatify.ai/product/ptv-001-regen.mp4",
  "created_at": "2024-01-15T10:30:00Z"
}

Status Codes

CodeDescription
200Regeneration started
401Unauthorized -- invalid API credentials
402Insufficient credits
404Task not found
500Internal server error

TIP

Video regeneration uses the current product image. If you want a different look, regenerate the image first with regen_image, then regenerate the video.