Video generation API
PixVerse
PixVerse V6 and C1 — T2V, I2V, start-end frame, reference-to-video, and video extend.
Provider: PixVerse9 models
Available models
| Model key | Display name | Capability | Atlas Cloud slug |
|---|---|---|---|
pixverse_v6_t2v | PixVerse V6 T2V | text-to-video | pixverse/v6/text-to-video |
pixverse_v6_i2v | PixVerse V6 I2V | image-to-video | pixverse/v6/image-to-video |
pixverse_v6_start_end | PixVerse V6 Start-End | start-end-frame | pixverse/v6/start-end-to-video |
pixverse_v6_ref2vid | PixVerse V6 Ref2Vid | reference-to-video | pixverse/v6/reference-to-video |
pixverse_v6_extend | PixVerse V6 Extend | video-extend | pixverse/v6/video-extend |
pixverse_c1_t2v | PixVerse C1 T2V | text-to-video | pixverse/c1/text-to-video |
pixverse_c1_i2v | PixVerse C1 I2V | image-to-video | pixverse/c1/image-to-video |
pixverse_c1_start_end | PixVerse C1 Start-End | start-end-frame | pixverse/c1/start-end-to-video |
pixverse_c1_ref2vid | PixVerse C1 Ref2Vid | reference-to-video | pixverse/c1/reference-to-video |
Endpoint
POST /api/generateRequest body
| Parameter | Type | Required | Description |
|---|---|---|---|
modelKey | string | ✓ | One of the model keys listed above |
prompt | string | ✓ | Text description of the image to generate |
inputUrl | string | Input image URL (for edit/i2i models) | |
aspectRatio | string | "1:1", "16:9", "9:16", etc. | |
imageQuality | string | "Low", "Medium", "High" | |
styleRef | string | string[] | Style reference image URL(s) | |
charRef | string | string[] | Character reference image URL(s) | |
brandId | string | Brand DNA ID for brand-consistent generation |
Code example
curl -X POST https://api.oyefilmy.com/api/generate \
-H "Authorization: Bearer of_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"modelKey": "pixverse_v6_t2v",
"prompt": "A stylized animation of a fox running through an enchanted forest"
}'Response
{
"success": true,
"predictionId": "pred_abc123...",
"status": "processing",
"model": "pixverse/v6/text-to-video",
"creditCost": 5
}V6 is the latest generation with higher quality. C1 is optimized for creative/stylized outputs.

