Generate Videos/Images
Get Template List
Get the Template list
Start with the API
GET https://devapi.vidnoz.com/v2/template/list
Request Attributes
Parameter | Required | Type | Description |
---|---|---|---|
personal | false | bool | Is it a custom template: true = custom template; false = official template (default) |
limit | false | int | Number of items per page, range 1–10,000; default is 100. |
end_cursor | false | string | End marker used to retrieve the next page of data. |
Example
Request Attributes
curl --request GET \
--url https://devapi.vidnoz.com/v2/template/list?personal=false \
--header "accept: application/json" \
--header "Authorization: Bearer $API_KEY" \
Response Attributes
Parameter | Type | Description |
---|---|---|
templates | array | Template List |
templates.id | string | Template ID |
templates.name | string | Template Name |
templates.aspect | int | Template format: 0=other; 1=16:9; 2=9:16; 3=1:1 |
templates.scenes | int | Scene Pages |
templates.preview_image_url | string | Preview Image Link |
templates.preview_audio_url | string | Preview Video Link |
Example
Response Attributes
{
"code": 200,
"message": "ok",
"data": {
"templates": [
{
"id": "dGRhTmR4MUQwQUJDR1BJUkdUbTVFZFZmSGFwUTZZb3BkcWQzVFdwZGxXcz0=",
"name": "Industry Trends & Forecast Consulting",
"aspect": 1,
"scenes": 8,
"preview_image_url": "https://static-alter1.vidnoz.com/designer/asset/202502/67b6928463bf95.43115430.png",
"preview_video_url": "https://static-alter1.vidnoz.com/designer/asset/202502/345667b694040930d0.09205760.mp4"
},
{
"id": "MnhIaGxQcUhZVnBKU3hFcjhyYjdSMWxpWHBSL3dtUTB3U0hPZStVV2xqQT0=",
"name": "My Customize Template",
"aspect": 3,
"scenes": 2,
"preview_image_url": "https://static-alter1.vidnoz.com/designer/asset/202411/6735cb6b82bbd4.54740981.png",
"preview_video_url": ""
}
]
}
}