curl --request POST \
--url https://spideriq.ai/api/v1/jobs/spiderVideo/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"payload": {
"projectName": "<string>",
"aspectRatio": "<string>",
"scenes": [
{
"videoUrl": "<string>",
"durationInSeconds": 123
}
],
"transitionDurationInFrames": 123,
"musicUrl": "<string>",
"musicVolume": 123,
"preprocess": {
"enabled": true
},
"upload": {
"enabled": true
},
"test": true
},
"priority": 123
}
'