Skip to main content
Decart provides state-of-the-art AI models for transforming videos and images through a simple API.

Quick example

Transform any video with a single API call:
# Submit job and poll for completion
JOB_ID=$(curl -s -X POST https://api.decart.ai/v1/jobs/lucy-pro-v2v \
  -H "X-API-KEY: $DECART_API_KEY" \
  -F "[email protected]" \
  -F "prompt=Transform into anime style" | jq -r '.job_id')

while [ "$(curl -s -H "X-API-KEY: $DECART_API_KEY" \
  https://api.decart.ai/v1/jobs/$JOB_ID | jq -r '.status')" != "completed" ]; do sleep 2; done

curl -H "X-API-KEY: $DECART_API_KEY" \
  https://api.decart.ai/v1/jobs/$JOB_ID/content --output output.mp4
View full code examples →

What you can build

Style Transfer

Transform videos into any artistic style

Object Editing

Replace or modify specific elements

Realtime Effects

Live video transformation via WebRTC

Getting started

1

Get API key

2

Install SDK

npm install @decartai/sdk or pip install decart-sdk
3

Transform

Follow our quickstart guide

Explore