Kling 3.0 Standard
Kling 3.0 Standard. AI video generation with optional audio at a lower cost.
/v1/media/queueOverview
Kling 3.0 Standard — video generation with optional audio at a lower cost than Pro. Async operation — submit a job, poll for completion.
| Property | Value |
|---|---|
| Model ID | kwaivgi/kling-v3.0-std |
| Provider | Kling |
| Resolutions | 720p |
| Aspect Ratios | 16:9, 9:16, 1:1 |
| Duration | 3–15 seconds |
| Audio Generation | Supported |
| Billing | Dynamic (actual cost per job) |
| Pricing | from $0.18/second |
Usage
All media models use the async job queue. Submit a job, then poll for the result.
Step 1: Submit Job
Text-to-Video
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'kwaivgi/kling-v3.0-std',
prompt: 'A cinematic drone shot over a rugged coastline at golden hour',
options: {
aspectRatio: '16:9',
duration: '5',
generateAudio: true,
},
}),
});
const { data } = await res.json();
// data.jobId — use this to poll for resultscurl -X POST https://api.yepapi.com/v1/media/queue \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "kwaivgi/kling-v3.0-std", "prompt": "A cinematic drone shot over a rugged coastline", "options": {"aspectRatio": "16:9", "duration": "5", "generateAudio": true}}'Image-to-Video
Pass a reference image via imageData with an imageRole (first_frame or last_frame) to generate a video from a still image.
const res = await fetch('https://api.yepapi.com/v1/media/queue', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'kwaivgi/kling-v3.0-std',
prompt: 'Animate this scene — clouds drifting, light changing',
options: {
aspectRatio: '16:9',
duration: '5',
generateAudio: true,
imageRole: 'first_frame',
},
imageData: {
mimeType: 'image/jpeg',
base64: '...', // Base64-encoded image
},
}),
});Step 2: Poll for Result
const status = await fetch(`https://api.yepapi.com/v1/media/status/${data.jobId}`, {
headers: { 'x-api-key': 'YOUR_API_KEY' },
});
const { data: job } = await status.json();
// job.status — "pending" | "processing" | "completed" | "failed"
// job.result.video — { mimeType, base64 } when completedcurl https://api.yepapi.com/v1/media/status/JOB_ID \
-H "x-api-key: YOUR_API_KEY"Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
model | string | Yes | kwaivgi/kling-v3.0-std or alias kling-std | — |
prompt | string | Yes | Text description of the video to generate | — |
options.aspectRatio | string | No | One of: 16:9, 9:16, 1:1 | 16:9 |
options.resolution | string | No | 720p | 720p |
options.duration | string | No | 3 to 15 (seconds) | 5 |
options.generateAudio | boolean | No | Generate an audio track for the video | false |
options.imageRole | string | No | How to use the input image: first_frame or last_frame | first_frame |
imageData.mimeType | string | No | MIME type of input image (image/png, image/jpeg, image/webp) | — |
imageData.base64 | string | No | Base64-encoded input image for image-to-video generation | — |
Pricing
| Tier | Cost/sec |
|---|---|
| All resolutions | $0.18 |
| With audio | $0.27 |
Example: 5-second video ≈ 5 x $0.18 = $0.90. Billing is dynamic — each job is billed from the actual cost of the finished video, so shorter or lower-resolution jobs cost less.
Video jobs can take several minutes to complete. Results retained for 1 hour.
Powered by Kling's Kling 3.0 Standard via our AI provider. 100% margin on upstream costs.