Skip to main content

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

FieldValue
API-KEY<api-key>
Content-Typeapplication/json

Request Parameters

Field NameTypeExampleDescriptionRequired
typestringIMAGE_TO_VIDEOFeature identifier✔️
modelstringQubico/skyreelsAI model to use✔️
conversationIdstringIMAGE_TO_VIDEOConversation context✔️
promptObject.imageUrlstringimages/example.jpgSource image path from Asset API upload✔️
promptObject.promptstringgentle breezeText description of the video✔️
promptObject.negative_promptstringdistortion, blurryElements to avoid in the generated video
promptObject.aspect_ratiostring16:9Aspect ratio of output video (16:9, 9:16, 1:1)⚠️
promptObject.guidance_scalenumber3.5Controls 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 --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
}
}'

Interactive Playground

API Playground

https://api.1min.ai/api/features
Path 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/..."
}
}