ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

eachlabs-video-generation

Generate new videos from text prompts, images, or reference inputs using EachLabs AI models. Supports text-to-video, image-to-video, transitions, motion control, talking head, and avatar generation. Use when the user wants to create new video content. For editing existing videos, see eachlabs-video-edit.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/eftalyurtseven/eachlabs-video-generation
Or

EachLabs Video Generation

Generate new videos from text prompts, images, or reference inputs using 165+ AI models via the EachLabs Predictions API. For editing existing videos (upscaling, lip sync, extension, subtitles), see the eachlabs-video-edit skill.

Authentication

Header: X-API-Key: <your-api-key>

Set the EACHLABS_API_KEY environment variable or pass it directly. Get your key at eachlabs.ai.

Quick Start

1. Create a Prediction

curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "pixverse-v5-6-text-to-video",
    "version": "0.0.1",
    "input": {
      "prompt": "A golden retriever running through a meadow at sunset, cinematic slow motion",
      "resolution": "720p",
      "duration": "5",
      "aspect_ratio": "16:9"
    }
  }'

2. Poll for Result

curl https://api.eachlabs.ai/v1/prediction/{prediction_id} \
  -H "X-API-Key: $EACHLABS_API_KEY"

Poll until status is "success" or "failed". The output video URL is in the response.

Model Selection Guide

Text-to-Video

ModelSlugBest For
Pixverse v5.6pixverse-v5-6-text-to-videoGeneral purpose, audio generation
XAI Grok Imaginexai-grok-imagine-text-to-videoFast creative
Kandinsky 5 Prokandinsky5-pro-text-to-videoArtistic, high quality
Seedance v1.5 Proseedance-v1-5-pro-text-to-videoCinematic quality
Wan v2.6wan-v2-6-text-to-videoLong/narrative content
Kling v2.6 Prokling-v2-6-pro-text-to-videoMotion control
Pika v2.2pika-v2-2-text-to-videoStylized, effects
Minimax Hailuo V2.3 Prominimax-hailuo-v2-3-pro-text-to-videoHigh fidelity
Sora 2 Prosora-2-text-to-video-proPremium quality
Veo 3veo-3Google's best quality
Veo 3.1veo3-1-text-to-videoLatest Google model
LTX v2 Fastltx-v-2-text-to-video-fastFastest generation
Moonvalley Mareymoonvalley-marey-text-to-videoCinematic style
Oviovi-text-to-videoGeneral purpose

Image-to-Video

Metadata

Stars2387
Views1
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-eftalyurtseven-eachlabs-video-generation": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.