Edit and render unlimited videos directly in your browser
Purpose-built API designed for modern AI video platforms
Clean, RESTful API with comprehensive documentation
Production-ready templates for rapid deployment
Client or server-side processing for optimal performance
From free personal use to enterprise-grade capabilities
Edit videos directly in your browser with no limitations
All processing happens in your browser - zero data leaves your device
No restrictions on the number of videos you can create
Frame-accurate positioning, scaling, and rotation tools
Industry-standard trimming and splitting capabilities
Enterprise-grade text editing with premium fonts
Complex multi-video layouts and compositions
Save and reuse custom video layouts
Seamless project export and import functionality
curl --request POST \
--url https://api.videoaiditor.com/v1/videos \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"metadata": {
"name": "Project 1",
"backgroundColor": "#000000",
"duration": 30000,
"fps": 30,
"canvas": { "width": 800, "height": 600 }
},
"clips": [{
"type": "image",
"name": "Main Sequence",
"source": "https://aiditor-uploads.s3.ap-south-1.amazonaws.com/vai1.png",
"timeFrame": { "start": 0, "end": 30000, "offset": 0 },
"position": { "x": 0, "y": 0, "z": 0 },
"transform": {
"scale": { "x": 1, "y": 1 },
"rotation": 0
},
"size": { "width": 800, "height": 600 },
"volume": 1
}]
}'