curl -X POST https://api.artificialstudio.ai/api/run \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY" \
-d '{
"tool": "animate-image",
"input": {
"model": "kling-o3-image-to-video",
"image_url": "https://example.com/start-frame.jpg",
"prompt": "Camera slowly zooming in",
"duration": 5
}
}'
{
"id": "507f1f77bcf86cd799439011",
"status": "processing",
"tool": "animate-image",
"createdAt": "2024-01-15T10:30:00.000Z"
}
Animate images with start and optional end frame guidance.
curl -X POST https://api.artificialstudio.ai/api/run \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY" \
-d '{
"tool": "animate-image",
"input": {
"model": "kling-o3-image-to-video",
"image_url": "https://example.com/start-frame.jpg",
"prompt": "Camera slowly zooming in",
"duration": 5
}
}'
{
"id": "507f1f77bcf86cd799439011",
"status": "processing",
"tool": "animate-image",
"createdAt": "2024-01-15T10:30:00.000Z"
}
| Credits | 44 credits per second |
| Duration | 3–15 seconds (configurable) |
| Tool | animate-image |
| Name | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Your API key |
Content-Type | string | Yes | application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
tool | string | Yes | animate-image |
input.model | string | Yes | kling-o3-image-to-video |
input.image_url | string | Yes | URL of the start frame image |
input.prompt | string | No | Description of the desired motion |
input.end_image_url | string | No | URL of the end frame image for guided animation |
input.duration | number | No | Video duration in seconds (3–15, default: 5) |
curl -X POST https://api.artificialstudio.ai/api/run \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY" \
-d '{
"tool": "animate-image",
"input": {
"model": "kling-o3-image-to-video",
"image_url": "https://example.com/start-frame.jpg",
"prompt": "Camera slowly zooming in",
"duration": 5
}
}'
{
"id": "507f1f77bcf86cd799439011",
"status": "processing",
"tool": "animate-image",
"createdAt": "2024-01-15T10:30:00.000Z"
}