Remotion Video Render Engine & Studio

Programmatic video compilation, AI prompt generation, and webhook triggers

Create Render Job

Active Queue

No video render jobs created yet. Submit a job or use the AI Scriptwriter!

AI Video Generator

Enter a descriptive prompt below. The built-in OpenAI model will generate a suitable video title and design an optimal color palette matching the theme.

Suggested Prompts

Cyberpunk Neon Promo: A neon cyberpunk promotion video with bright pinks and cyan blue tones.
Forest Zen Meditation: A calm meditation video themed around deep forest greens and earth colors.
Modern Dark Tech Presentation: A corporate release presentation featuring dark charcoal and gold accent colors.

Global Webhook Settings

Configure a Webhook URL below. Whenever a video finishes rendering or fails, our background worker will send a `POST` request containing the job status, output URL, and errors.

Developer API Documentation

You can trigger renders and track jobs programmatically using standard HTTP requests:
1. Queue a New Render (POST)
curl -X POST https://render.sandboxmaxine.cloud/renders \
  -H "Content-Type: application/json" \
  -d '{
    "titleText": "API Triggered Render",
    "titleColor": "#000000",
    "logoColor1": "#FF5733",
    "logoColor2": "#33FF57",
    "webhookUrl": "https://yourserver.com/hooks"
  }'
2. Get Render Job Status (GET)
curl https://render.sandboxmaxine.cloud/renders/JOB_ID_HERE
3. Webhook Payload Format (JSON POST)
{
  "jobId": "b458221c-7fa6-422b-bdd4-3ddccf57c2ce",
  "status": "completed",
  "data": {
    "titleText": "API Triggered Render",
    "titleColor": "#000000",
    "logoColor1": "#FF5733",
    "logoColor2": "#33FF57"
  },
  "videoUrl": "https://render.sandboxmaxine.cloud/renders/b458221c.mp4"
}
Toast Message