Skyreels - Image to Video
Transform static images into high-quality videos using Skyreels AI. This model is specially trained for human-centric video generation, offering realistic output with customizable control.
Note: Image files must first be uploaded using the Asset API before processing. The imageUrl parameter should contain the path returned from the Asset API upload.
Endpoint
Request Headers
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Request Parameters
| Field Name | Type | Example | Description | Required |
|---|---|---|---|---|
| type | string | IMAGE_TO_VIDEO | Feature identifier | ✔️ |
| model | string | Qubico/skyreels | AI model to use | ✔️ |
| conversationId | string | IMAGE_TO_VIDEO | Conversation context | ✔️ |
| promptObject.imageUrl | string | images/example.jpg | Source image path from Asset API upload | ✔️ |
| promptObject.prompt | string | gentle breeze | Text description of the video | ✔️ |
| promptObject.negative_prompt | string | distortion, blurry | Elements to avoid in the generated video | ❌ |
| promptObject.aspect_ratio | string | 16:9 | Aspect ratio of output video (16:9, 9:16, 1:1) | ⚠️ |
| promptObject.guidance_scale | number | 3.5 | Controls prompt adherence (0-10) | ❌ |
Image Requirements
File formats:
- JPG, PNG, WEBP
Size limit:
- Maximum: 10MB
Aspect Ratio Options
16:9(Landscape - Default)9:16(Portrait)1:1(Square)
Code Examples
- cURL
- JavaScript
- Python
curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "IMAGE_TO_VIDEO",
"model": "Qubico/skyreels",
"conversationId": "IMAGE_TO_VIDEO",
"promptObject": {
"imageUrl": "images/2026_01_07_11_03_42_748_girl.png",
"prompt": "FPS-24, a cinematic close-up of a young woman with long dark hair. She is sitting in a sunlit cafe, wearing a simple linen shirt. As she looks out the window, a soft breeze gently moves her hair and the sheer curtains in the background. She slowly turns her head towards the camera with a subtle, graceful smile. Ultra-realistic, high detail, shallow depth of field, warm morning light.",
"negative_prompt": "distortion, blurry, morphed, chaotic movement",
"aspect_ratio": "16:9",
"guidance_scale": 3.5
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'IMAGE_TO_VIDEO',
model: 'Qubico/skyreels',
conversationId: 'IMAGE_TO_VIDEO',
promptObject: {
imageUrl: 'images/2026_01_07_11_03_42_748_girl.png',
prompt: 'FPS-24, a cinematic close-up of a young woman with long dark hair. She is sitting in a sunlit cafe, wearing a simple linen shirt. As she looks out the window, a soft breeze gently moves her hair and the sheer curtains in the background. She slowly turns her head towards the camera with a subtle, graceful smile. Ultra-realistic, high detail, shallow depth of field, warm morning light.',
negative_prompt: 'distortion, blurry, morphed, chaotic movement',
aspect_ratio: '16:9',
guidance_scale: 3.5
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
data = {
"type": "IMAGE_TO_VIDEO",
"model": "Qubico/skyreels",
"conversationId": "IMAGE_TO_VIDEO",
"promptObject": {
"imageUrl": "images/2026_01_07_11_03_42_748_girl.png",
"prompt": "FPS-24, a cinematic close-up of a young woman with long dark hair. She is sitting in a sunlit cafe, wearing a simple linen shirt. As she looks out the window, a soft breeze gently moves her hair and the sheer curtains in the background. She slowly turns her head towards the camera with a subtle, graceful smile. Ultra-realistic, high detail, shallow depth of field, warm morning light.",
"negative_prompt": "distortion, blurry, morphed, chaotic movement",
"aspect_ratio": "16:9",
"guidance_scale": 3.5
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
API Playground
https://api.1min.ai/api/featuresPath to the source image file uploaded via Asset API.
Text description of the video generation.
Things to avoid in the generated video.
Default: 16:9
Controls prompt adherence (0-10). Default: 3.5
Generated cURL Command:
curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "IMAGE_TO_VIDEO",
"model": "Qubico/skyreels",
"conversationId": "IMAGE_TO_VIDEO",
"promptObject": {
"imageUrl": "images/2026_01_07_11_03_42_748_girl.png",
"prompt": "FPS-24, a cinematic close-up of a young woman with long dark hair. She is sitting in a sunlit cafe, wearing a simple linen shirt. As she looks out the window, a soft breeze gently moves her hair and the sheer curtains in the background. She slowly turns her head towards the camera with a subtle, graceful smile. Ultra-realistic, high detail, shallow depth of field, warm morning light.",
"negative_prompt": "distortion, blurry, morphed, chaotic movement",
"aspect_ratio": "16:9",
"guidance_scale": 3.5
}
}'
Response
{
"aiRecord": {
"uuid": "record-uuid",
"userId": "user-uuid",
"teamId": "team-uuid",
"model": "Qubico/skyreels",
"type": "IMAGE_TO_VIDEO",
"status": "SUCCESS",
"createdAt": "2026-01-02T12:00:00.000Z",
"aiRecordDetail": {
"promptObject": {
"imageUrl": "images/2026_01_07_11_03_42_748_girl.png",
"prompt": "FPS-24, a cinematic close-up of a young woman with long dark hair. She is sitting in a sunlit cafe, wearing a simple linen shirt. As she looks out the window, a soft breeze gently moves her hair and the sheer curtains in the background. She slowly turns her head towards the camera with a subtle, graceful smile. Ultra-realistic, high detail, shallow depth of field, warm morning light.",
"aspect_ratio": "16:9"
},
"resultObject": [
"development/videos/generated_video.mp4"
],
"responseObject": {}
},
"temporaryUrl": "https://s3.us-east-1.amazonaws.com/asset.1min.ai/..."
}
}