Generate Videos/Images
Video Effects List
Video effects list
GET https://devapi.vidnoz.com/v2/image-to-video-effects
Response Attributes
Parameter | Type | Description |
---|---|---|
cover_url | string | Video effects cover image URL |
video_url | string | Video effects URL |
model_name | string | Model name |
effect_name | string | Video effects name |
Example
Request Attributes
curl --request GET \
--url https://devapi.vidnoz.com/v2/image-to-video-effects \
--header "accept: application/json" \
--header "Authorization: Bearer $API_KEY" \
Response Attributes
{
"code": 200,
"message": "ok",
"data": [
{
"cover_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Jesus_Hug.jpg",
"video_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Jesus_Hug.mp4",
"model_name": "hug_jesus_20_epochs",
"effect_name": "AI Jesus Hug"
},
{
"cover_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Flying.jpg",
"video_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Flying.mp4",
"model_name": "flying_effect",
"effect_name": "Flying"
},
{
"cover_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Melt_Everything.jpg",
"video_url": "https://static-alter1.vidnoz.com/image_to_video_effects/Melt_Everything.mp4",
"model_name": "Melt_It",
"effect_name": "AI Melt Everything"
},
{
"cover_url": "https://static-alter1.vidnoz.com/image_to_video_effects/BoomBoom.jpg",
"video_url": "https://static-alter1.vidnoz.com/image_to_video_effects/BoomBoom.mp4",
"model_name": "VFX_EXPLOSION_30",
"effect_name": "BoomBoom"
}
]
}