Kling v1 | Standard | Text to Video
Generate videos from text prompts using Kling v1 Standard. Features camera control options including predefined movements and advanced camera parameters for creative video generation at an affordable price point.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v1-standard-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A majestic waterfall in a tropical jungle, mist rising, birds flying through the canopy",
"aspect_ratio": "16:9",
"duration": 5
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
16:9 |
Aspect ratio. Options: 16:9, 9:16, 1:1 |
| camera_control |
string |
- |
Predefined camera movement. Options: down_back, forward_up, right_turn_forward, left_turn_forward |
| camera_control_config_type |
string |
- |
Advanced camera control type. Options: horizontal, vertical, pan, tilt, roll, zoom |
| camera_control_config_value |
number |
- |
Value for the advanced camera control |
| cfg_scale |
number |
0.5 |
Classifier-free guidance scale |
| duration |
integer |
5 |
Video duration in seconds |
| negative_prompt |
string |
blur, distort, and low quality |
Things to avoid in generation |
| prompt |
string |
- |
Text prompt for video generation |
Examples
Video with camera movement:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v1-standard-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A medieval castle on a hilltop at sunset, dramatic clouds",
"aspect_ratio": "16:9",
"duration": 5,
"camera_control": "forward_up",
"negative_prompt": "blur, distort, and low quality"
}
}'
Advanced camera zoom:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "kling-v1-standard-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A single red rose in a garden, dewdrops on the petals, morning light",
"aspect_ratio": "1:1",
"camera_control_config_type": "zoom",
"camera_control_config_value": 2,
"cfg_scale": 0.5
}
}'
Related Models
Documentation
1---2name: kling-v1-standard-text-to-video3description: Kling v1 | Standard | Text to Video. Generate videos from text using Kling v1 Standard with camera control. Affordable AI text-to-video with camera movements. Triggers: kling v1 text to video, kling standard video, kling v1 t2v, kling standard text to video, kling camera control4---56# Kling v1 | Standard | Text to Video78Generate videos from text prompts using Kling v1 Standard. Features camera control options including predefined movements and advanced camera parameters for creative video generation at an affordable price point.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "kling-v1-standard-text-to-video",20 "version": "0.0.1",21 "input": {22 "prompt": "A majestic waterfall in a tropical jungle, mist rising, birds flying through the canopy",23 "aspect_ratio": "16:9",24 "duration": 525 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| aspect_ratio | string | 16:9 | Aspect ratio. Options: `16:9`, `9:16`, `1:1` |34| camera_control | string | - | Predefined camera movement. Options: `down_back`, `forward_up`, `right_turn_forward`, `left_turn_forward` |35| camera_control_config_type | string | - | Advanced camera control type. Options: `horizontal`, `vertical`, `pan`, `tilt`, `roll`, `zoom` |36| camera_control_config_value | number | - | Value for the advanced camera control |37| cfg_scale | number | 0.5 | Classifier-free guidance scale |38| duration | integer | 5 | Video duration in seconds |39| negative_prompt | string | blur, distort, and low quality | Things to avoid in generation |40| prompt | string | - | Text prompt for video generation |4142## Examples4344**Video with camera movement:**45```bash46curl -X POST https://api.eachlabs.ai/v1/prediction \47 -H "Content-Type: application/json" \48 -H "X-API-Key: $EACHLABS_API_KEY" \49 -d '{50 "model": "kling-v1-standard-text-to-video",51 "version": "0.0.1",52 "input": {53 "prompt": "A medieval castle on a hilltop at sunset, dramatic clouds",54 "aspect_ratio": "16:9",55 "duration": 5,56 "camera_control": "forward_up",57 "negative_prompt": "blur, distort, and low quality"58 }59 }'60```6162**Advanced camera zoom:**63```bash64curl -X POST https://api.eachlabs.ai/v1/prediction \65 -H "Content-Type: application/json" \66 -H "X-API-Key: $EACHLABS_API_KEY" \67 -d '{68 "model": "kling-v1-standard-text-to-video",69 "version": "0.0.1",70 "input": {71 "prompt": "A single red rose in a garden, dewdrops on the petals, morning light",72 "aspect_ratio": "1:1",73 "camera_control_config_type": "zoom",74 "camera_control_config_value": 2,75 "cfg_scale": 0.576 }77 }'78```7980## Related Models8182- [Kling v1 | Pro | Text to Video](../kling-v1-pro-text-to-video/) - Higher quality Pro tier83- [Kling v2.1 | Master | Text to Video](../kling-v2-1-master-text-to-video/) - Latest generation84- [Kling v1 | Standard | Image to Video](../kling-v1-standard-image-to-video/) - Standard image-to-video8586## Documentation8788- [each::labs Docs](https://docs.eachlabs.ai)89- [API Reference](https://docs.eachlabs.ai/api/overview)