Rendley docs

Automated video editing

You send a prompt to the Rendley agent, it edits a project for you, and you get a project_url back. From there you can open the project in the editor to review it, make more edits, or export it to a downloadable MP4 through the API.

#Step 1: Start the agent

POSTmcp.rendley.com/v1/agent

Send a prompt describing what you want. You can optionally attach source files (as public URLs) and target an existing project.

#Step 2: Wait for the agent to finish

GETmcp.rendley.com/v1/jobs/{job_id}

Poll this endpoint every 3-5 seconds until status is completed or failed. The agent usually finishes in 1-3 minutes depending on what you asked for.

When the job completes, you get a project_url you can open in the browser to review and edit further. See Jobs and polling for the full polling loop.

At this point the project timeline is ready. You can stop here and use the editor, or continue to export a video file.

If you need a downloadable video file, start an export. This is a separate step because you might want to review the project first, or you might not need a rendered file at all.

Poll this endpoint the same way until status is completed. The result_data field contains a storage_url you can download from. See Jobs and polling for the full polling loop.

The storage_url is a time-limited presigned link. Download the file soon after the export completes.

#Continuing a conversation

POSTmcp.rendley.com/v1/agent

To make follow-up edits, send another request with the same project_id and thread_id. The agent keeps the full context of what it did before.