curl --request POST \
--url https://api.novita.ai/v3/async/txt2video \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"extra": {
"response_video_type": "<string>",
"webhook": {
"url": "<string>",
"test_mode": {
"enabled": true,
"return_task_status": "<string>"
}
},
"enterprise_plan": {
"enabled": true
}
},
"model_name": "<string>",
"height": 123,
"width": 123,
"steps": 123,
"prompts": [
{
"frames": 123,
"prompt": "<string>"
}
],
"negative_prompt": "<string>",
"guidance_scale": 123,
"seed": 123,
"loras": [
{
"model_name": "<string>",
"strength": 123
}
],
"embeddings": [
{
"model_name": "<string>"
}
],
"closed_loop": true,
"clip_skip": 123
}
'