3D Video technical docs
Endpoint, auth header, parameters, prices, and tested request examples for Imole 3D Video.
Endpoint and pricing
Request headers
Authorization required
Bearer Imole API key.
Content-Type required
Use application/json for JSON requests.
Request parameters
model required
Use imole-3d-video.
image_url
Source image URL.
image_base64
Base64 source image.
duration
Duration in seconds.
1-15fps
Frames per second.
animation_type
Animation preset.
circle, zoom, dolly, orbital, horizontal, verticalintensity
Parallax intensity.
0.1-1.0Video example library
Tested request examples
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
}'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
}'curl -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/videos/$VIDEO_ID"curl -L -H "Authorization: Bearer $IMOLE_API_KEY" "https://api.imole.app/v1/videos/$VIDEO_ID/content" -o imole-3d-video.mp4