JavaScript
const form = new FormData(); form.append('prompt', '<string>'); form.append('data', '<string>'); const options = {method: 'POST', headers: {'x-api-key': '<api-key>'}}; options.body = form; fetch('https://api.decart.ai/v1/jobs/lucy-fast-v2v', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>", "input": "<unknown>", "ctx": {} } ] }
Edit video using Lucy Edit Fast model.
API key for authentication
Text prompt for the video generation
Video file to process
Seed for the video generation
0 <= x <= 4294967295
Whether to enhance the prompt
Resolution of the video generation
"720p"
Successful Response
Was this page helpful?