curl --request POST \
--url https://api.ttapi.io/happyhorse/api/v1/services/aigc/video-generation/video-synthesis \
--header 'Content-Type: application/json' \
--header 'TT-API-KEY: <api-key>' \
--data '
{
"model": "happyhorse-1.0-video-edit",
"input": {
"prompt": "<string>",
"media": [
{
"type": "video",
"url": "<string>"
}
]
},
"parameters": {
"resolution": "720P",
"watermark": false,
"audio_setting": "auto",
"seed": 12345
}
}
'