curl --request GET \
--url https://api.creatify.ai/api/product_to_videos/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "product_anyshot",
"product_url": "<string>",
"aspect_ratio": "9x16",
"override_avatar": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"motion_style": "talking",
"product_showcase_url": "<string>",
"image_prompt": "<string>",
"video_prompt": "<string>",
"status": "initializing",
"generated_video_url": "<string>",
"generated_photo_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"webhook_url": "<string>",
"failed_reason": "<string>",
"regen_type": "<string>",
"regen_source_id": "<string>"
}
]
Retrieve a list of videos, with an optional ids param to filter vdieo by their UUIDs.
curl --request GET \
--url https://api.creatify.ai/api/product_to_videos/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "product_anyshot",
"product_url": "<string>",
"aspect_ratio": "9x16",
"override_avatar": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"motion_style": "talking",
"product_showcase_url": "<string>",
"image_prompt": "<string>",
"video_prompt": "<string>",
"status": "initializing",
"generated_video_url": "<string>",
"generated_photo_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"webhook_url": "<string>",
"failed_reason": "<string>",
"regen_type": "<string>",
"regen_source_id": "<string>"
}
]
API ID, from your settings page.
API Key, from your settings page.
Comma-separated list of UUIDs to filter. Maximum 100 entries allowed.
1
The response is of type object[]
.