pixverse
Generate AI videos using Pixverse API
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/duguyixiaono1/pixverse-skillPixverse Video Generation
Generate AI videos using the Pixverse API.
Setup
- Get your API key from https://pixverse.ai/
- Set the environment variable:
Or add toexport PIXVERSE_API_KEY="your-api-key-here"~/.openclaw/openclaw.json:{ "skills": { "pixverse": { "env": { "PIXVERSE_API_KEY": "your-api-key-here" } } } }
Usage
Generate Video from Text Prompt
curl -X POST https://api.pixverse.ai/v1/generate \
-H "Authorization: Bearer $PIXVERSE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A group of hackers coding intensely in a futuristic lab",
"aspect_ratio": "16:9",
"duration": 4,
"style": "realistic"
}'
Generate Video from Image
curl -X POST https://api.pixverse.ai/v1/generate \
-H "Authorization: Bearer $PIXVERSE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/image.png",
"prompt": "Make this image come alive with motion",
"duration": 4
}'
Check Video Status
curl -X GET https://api.pixverse.ai/v1/tasks/{task_id} \
-H "Authorization: Bearer $PIXVERSE_API_KEY"
Download Video
Once the task is complete, download the video URL from the response.
Parameters
- prompt: Text description of the video (required)
- image_url: Starting image URL (optional)
- aspect_ratio: "16:9", "9:16", "1:1" (default: "16:9")
- duration: 2-8 seconds (default: 4)
- style: "realistic", "anime", "3d", "cinematic" (default: "realistic")
- motion_strength: 0-10 (default: 5)
Notes
⚠️ Important:
- This is a template skill. You need to verify the actual Pixverse API endpoints
- Pixverse may require different authentication or have different API structure
- Check https://docs.pixverse.ai/ for the latest API documentation
- Video generation may take 1-5 minutes depending on complexity
Alternative: Web UI Automation
If API access is not available, consider using browser automation to interact with the Pixverse web interface.
Metadata
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-duguyixiaono1-pixverse-skill": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
knowfun
Generate educational content using Knowfun.io API - create courses, posters, games, and films with AI. Use when user wants to generate educational content, visual materials, or interactive experiences.
pixverse
Generate high-quality AI videos using Pixverse API - text-to-video, image-to-video, and video extension
pixverse
Generate high-quality AI videos using PixVerse API - text-to-video, image-to-video, and video extension