Developer API

Remove BG Video API
for Enterprise Workflows

Integrate AI video background removal at scale with 4 specialized models, transparent export formats, and predictable credits-based pricing.

Secure API Access
REST + SDK
Built for Production

Video Background Removal Examples

See the power of our AI video background remover. Drag the slider to compare before and after results.

Already have a green screen?

View All Examples

Remove Background Video API - Code Examples

Node.js REST
// Node.js - Public API v1 (/v1/jobs)
const API_BASE = 'https://api.removebgvideo.com';
const API_KEY = process.env.REMOVEBGVIDEO_API_KEY;

// 1) Create job (auto_start = true)
const createResp = await fetch(`${API_BASE}/v1/jobs`, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-Api-Key': API_KEY,
  },
  body: JSON.stringify({
    video_url: 'https://cdn.example.com/input.mp4',
    model: 'original',
    bg_type: 'green',
    output_format: 'webm',
    auto_start: true,
  }),
});
const created = await createResp.json();
const jobId = created.id;

// 2) Poll status until completed
let outputUrl = null;
for (let i = 0; i < 120; i++) {
  const statusResp = await fetch(`${API_BASE}/v1/jobs/${jobId}`, {
    headers: { 'X-Api-Key': API_KEY },
  });
  const job = await statusResp.json();

  if (job.status === 'completed') {
    outputUrl = job.output_url;
    break;
  }
  if (job.status === 'failed') {
    throw new Error(job.error || 'Job failed');
  }
  await new Promise((r) => setTimeout(r, 2000));
}

console.log('Output:', outputUrl);
Get Your API Key

Start building with our Remove Background Video API

Remove Background Video API Pricing

6 pricing tiers for both individual developers and enterprise teams

API Features

  • RESTful API with JSON responses
  • 100 requests per minute per API key
  • MP4, MOV, AVI format support
  • Up to 30 minutes per video

Processing Features

  • AI-powered background removal
  • Custom backgrounds & transparent videos
  • Processed video + mask output
  • No green screen required

Business

For teams and enterprises with higher volume needs

$299$480

Save 38%

BUSINESS

For growing businesses and teams

(7200 credits) • 120 minutes of processing

What's included:

  • Up to 4K video processing
  • Transparent backgrounds (webm, mov, pngs, gif, webp)
  • Free preview for all videos
  • Batch processing (up to 20 videos)
  • API access
  • Priority support
Most popular
$799$1440

Save 45%

ENTERPRISE

Enterprise-level video processing

(21600 credits) • 360 minutes of processing

What's included:

  • Up to 4K video processing
  • Transparent backgrounds (webm, mov, pngs, gif, webp)
  • Free preview for all videos
  • Batch processing (up to 20 videos)
  • API access
  • Priority support
Best value
$1499$4000

Save 63%

PREMIUM

Professional video processing

(60000 credits) • 1000 minutes of processing

What's included:

  • Up to 4K video processing
  • Transparent backgrounds (webm, mov, pngs, gif, webp)
  • Free preview for all videos
  • Batch processing (up to 20 videos)
  • API access
  • Priority support
Comprehensive API documentation
99.9% API uptime guarantee
Developer support included

Developer-First Video Processing

Official SDKs

TypeScript-first Node.js SDK and Pythonic SDK with type hints. Handle authentication, job management, and video composition automatically.

Complete Workflow

Remove backgrounds with AI, then compose with custom backgrounds locally using FFmpeg. One SDK handles both API calls and video processing.

Professional Output

Export in H.264, VP9 WebM, ProRes MOV, or PNG sequences. From web apps to professional video editing workflows.

Start Integration Now

Get API access and start building with our SDKs

How to Build with Our SDKs

1

Install SDK

  • npm install @removebgvideo/sdk
  • pip install removebgvideo
  • Get your API key from dashboard
2

Remove Background

  • Load video with Video.open()
  • Call video.removeBackground()
  • Get transparent video automatically
3

Compose & Export

  • Create custom backgrounds locally
  • Position and layer videos with precision
  • Export in professional formats

Frequently Asked Questions

Everything you need to know about integrating the video background removal API.

What is the Remove Background Video API?

Our Remove Background Video API allows developers to integrate AI-powered video background removal directly into their applications. The API automatically detects subjects in videos and removes backgrounds without requiring green screens.

How does the Video Background Removal API work?

The API uses advanced AI models to process videos in four simple steps: 1) Create a job and get an upload URL, 2) Upload your video file, 3) Start processing with optional background customization, and 4) Retrieve the processed video.

What video formats does the API support?

Our API supports the most common video formats including MP4, MOV, and AVI. Videos can be up to 30 minutes long and the API maintains the original quality and frame rate.

How much does the Video Background Removal API cost?

The API uses model-based pricing: Original 60 credits/min, Light 45 credits/min, Pro 180 credits/min, Human 45 credits/min. Credits are charged by processed duration.

How long does video processing take?

Processing time depends on video length and complexity. Generally, 1 minute of video takes approximately 4-5 minutes to process using our AI models.

Do you provide SDKs for the API?

Yes! We provide official SDKs for Python and Node.js that make integration even easier. The SDKs handle authentication, job management, and video composition automatically.

Can the API remove backgrounds without green screens?

Absolutely! Our AI-powered API can remove backgrounds from any video without requiring green screens or special lighting setups.

What output formats does the API provide?

The API offers flexible output options: MP4 videos with custom color backgrounds, transparent videos in WebM VP9, ProRes MOV, or PNG sequence formats, and high-quality mask videos.

Which AI model should I use?

We offer 4 AI models: Original (highest quality), Light (2x faster, 25% cheaper), Pro (supports text prompts), and Human (fastest, optimized for portraits). Choose based on your quality and speed requirements.

Start Building with Our SDKs

Join thousands of developers using our Python & Node.js SDKs for video background removal