Free Forever for Personal Use

Video Editing API for AI Platforms

Edit unlimited videos in your browser for free, or empower your AI platform with professional video editing API.

Free Forever

Edit and render unlimited videos directly in your browser

AI Video Ready

Purpose-built API designed for modern AI video platforms

Developer-First API

Clean, RESTful API with comprehensive documentation

Enterprise Templates

Production-ready templates for rapid deployment

Flexible Processing

Client or server-side processing for optimal performance

Features for Everyone

From free personal use to enterprise-grade capabilities

Free Features

Browser-Based Editing

Edit videos directly in your browser with no limitations

Complete Privacy

All processing happens in your browser - zero data leaves your device

Unlimited Renders

No restrictions on the number of videos you can create

Core Features

Precision Control

Frame-accurate positioning, scaling, and rotation tools

Professional Editing

Industry-standard trimming and splitting capabilities

Typography Suite

Enterprise-grade text editing with premium fonts

Enterprise Features

Multi-Stream Composition

Complex multi-video layouts and compositions

Template System

Save and reuse custom video layouts

Project Portability

Seamless project export and import functionality

API Examples
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
    }]
  }'