Imole 3D Video

Proprietary Imole parallax video service exposed through the Imole API for turning one image into short 3D-style camera motion clips.

Video

3D Video technical docs

Endpoint, auth header, parameters, prices, and tested request examples for Imole 3D Video.

Endpoint

Endpoint and pricing

POST /videos Endpoint https://api.imole.app/v1 Base URL 10 API cauris 10 Agent cauris
Headers

Request headers

Authorization required

Bearer Imole API key.

Content-Type required

Use application/json for JSON requests.

Parameters

Request parameters

model required

Use imole-3d-video.

image_url

Source image URL.

image_base64

Base64 source image.

duration

Duration in seconds.

1-15
fps

Frames per second.

animation_type

Animation preset.

circle, zoom, dolly, orbital, horizontal, vertical
intensity

Parallax intensity.

0.1-1.0
Shared guide

Video example library

Examples

Tested request examples

Circle animation
curl -X POST "https://api.imole.app/v1/videos" \
  -H "Authorization: Bearer $IMOLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "imole-3d-video",
  "image_url": "https://imole.app/docs-samples/poster.png",
  "duration": 5,
  "fps": 30,
  "animation_type": "circle",
  "intensity": 0.45
}'
Zoom animation
curl -X POST "https://api.imole.app/v1/videos" \
  -H "Authorization: Bearer $IMOLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "imole-3d-video",
  "image_url": "https://imole.app/docs-samples/poster.png",
  "duration": 5,
  "fps": 30,
  "animation_type": "zoom",
  "intensity": 0.35
}'
Check job status
curl -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/videos/$VIDEO_ID"
Download result
curl -L -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/videos/$VIDEO_ID/content" -o imole-3d-video.mp4