Pixverse Pixverse C1 Text To Video
Playground
Try it on WavespeedAI!PixVerse C1 generates film-grade videos from text prompts with flexible duration (1-15s), multiple resolutions up to 1080p, and optional native audio generation. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Features
PixVerse C1 Text-to-Video
PixVerse C1 is PixVerse’s latest text-to-video model, generating high-quality cinematic video from natural language prompts. With four resolution tiers, eight aspect ratio options, optional native audio generation, and clips up to 15 seconds, it covers a wide range of creative and production workflows.
- Need to animate an image? Try PixVerse C1 Image-to-Video
Why Choose This?
-
High-quality video generation Produces detailed, visually coherent video with accurate motion, lighting, and scene composition from text descriptions.
-
Four resolution tiers Generate from 360p up to 1080p — balance quality and cost based on your delivery needs.
-
Eight aspect ratio options Supports 16:9, 9:16, 1:1, 4:3, 3:4, 3:2, 2:3, and 21:9 for any platform or format.
-
Optional native audio generation Enable generate_audio_switch to produce synchronized ambient sound alongside the video.
-
Extended duration Generate clips from 1 to 15 seconds for maximum creative flexibility.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the scene, motion, camera style, and atmosphere. |
| aspect_ratio | No | Output aspect ratio. Options: 16:9 (default), 4:3, 1:1, 3:4, 9:16, 2:3, 3:2, 21:9. |
| resolution | No | Output resolution: 360p, 540p, 720p (default), or 1080p. |
| duration | No | Clip length in seconds. Range: 1–15. Default: 5. |
| generate_audio_switch | No | Whether to generate native audio for the video. Default: off. |
How to Use
- Write your prompt — describe the scene, characters, camera movement, lighting, and atmosphere.
- Select aspect ratio — choose the format that fits your target platform.
- Select resolution — 360p for fastest/lowest cost, 720p for standard, 1080p for highest quality.
- Set duration — choose between 1 and 15 seconds.
- Enable audio (optional) — check generate_audio_switch to generate synchronized native audio.
- Submit — generate, preview, and download your video.
Pricing
| Resolution | Without Audio | With Audio |
|---|---|---|
| 360p | $0.030/s | $0.040/s |
| 540p | $0.040/s | $0.050/s |
| 720p | $0.050/s | $0.065/s |
| 1080p | $0.095/s | $0.120/s |
Billing Rules
- Billing is calculated per second of video generated
- Duration range: 1–15 seconds
- Examples: 10s at 720p (no audio) = $0.50 — 10s at 1080p (no audio) = $0.95
Best Use Cases
- Cinematic Storytelling — Render atmospheric, narrative-driven scenes from detailed text descriptions.
- Social Media Content — Generate platform-optimized clips across multiple aspect ratios with optional audio.
- Marketing & Advertising — Produce promotional video content quickly without a film crew.
- Concept Visualization — Bring creative ideas and moods to life quickly for pitching and review.
- Rapid Prototyping — Use lower resolutions to iterate on prompt directions before a final render.
Pro Tips
- Be specific in your prompt — include camera angle, lighting style, subject behavior, and atmosphere.
- Use 360p or 540p to rapidly test and iterate on prompts before committing to a 1080p final render.
- Enable audio for scenes with strong environmental elements like crowds, nature, or action.
- Match aspect ratio to your platform: 16:9 for YouTube and cinematic content, 9:16 for Reels and Shorts, 1:1 for feeds.
Notes
- Only prompt is required; all other parameters are optional.
- Please follow PixVerse’s content usage policies when crafting prompts.
Related Models
- PixVerse C1 Image-to-Video — Animate a reference image into a cinematic video clip.
- PixVerse V6 Text-to-Video — Previous generation PixVerse text-to-video model.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-c1/text-to-video" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | Text prompt describing the video to generate. | |
| aspect_ratio | string | No | 16:9 | 16:9, 4:3, 1:1, 3:4, 9:16, 2:3, 3:2, 21:9 | Aspect ratio of the generated video. |
| resolution | string | No | 720p | 360p, 540p, 720p, 1080p | Resolution quality of the generated video. |
| duration | integer | No | 5 | 1 ~ 15 | Duration of the video in seconds (1-15). |
| generate_audio_switch | boolean | No | false | - | Whether to generate native audio for the video. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |