Clip Generation API (Reka Clip)
With the Reka Clip Vision API, you can automatically transform long videos into engaging short clips using AI-powered highlight detection.
To try this API through a no-code interface, check out Reka Clip, where you can submit a video link and generate clips instantly.
To see an example of integrating Reka Clip with n8n, refer to the sample workflow available on GitHub here
Usage
We offer two ways to generate reels from your videos:
- Option 1: 2‑step workflow
- Submit a job with
POST /v1/creator/reels - Poll job status with
GET /v1/creator/reels/{id}until completed
- Submit a job with
- Option 2: Single streaming request
- Submit a job to
POST /v1/creator/reelswithstream=trueto receive real‑time progress updates (SSE)
- Submit a job to
Option 1: Submit and poll
Endpoint
POST /v1/creator/reels
Headers
Content-Type: application/jsonX-Api-Key: YOUR_API_KEY
Request body
video_urls(array[string], required): URLs of input videosprompt(string, required): Description of the reel to generategeneration_config(object, optional):template(“moments” | “compilation”, default: “moments”)num_generations(integer, default: 1)min_duration_seconds(integer, optional)max_duration_seconds(integer, optional)
rendering_config(object, optional):subtitles(boolean, default: true)aspect_ratio(string, default: “9:16”)
Bash
Python
Check generation status
GET /v1/creator/reels/{id}
Returns job metadata and, when status is completed, an output array with generated reels.
Bash
Python
Option 2: Streaming in one request
Set stream: true to receive Server-Sent Events (SSE) with progress updates until completion.