Motion AI
Transform any design into breathtaking 3D flythroughs with dynamic motions that bring your vision to life in stunning detail.
‼️ NOTE: This model has been old and may be deprecated soon, please use Video AI instead of Motion AI for future projects. ‼️
POST /v2/generate
Parameters
model
string
Required
Value must be motion
for Motion AI. See other generators. Browse other Generators.
image
string
Optional
URL of the input image. Encode your image url if url have special characters.
prompt
string
Optional
Description of desired motion design
seed
integer
Optional
For reproducible results
enhance_prompt
string
Optional
If you want to use Prompt Enhance model, use true
value. If you want to continue without Prompt Enhancer don't add enhance_prompt
parameter to your requests.
luwmodel
integer
Optional
If you want to use Luw 3 Symphony model, use symphony-3
value. If you want to continue using Luw 2.5 Aria model don't add luwmodel
parameter to your requests.
processing_url
string
Optional
Get process results with same endpoint, alternative to /results
endpoint usage.
Curl Example
curl -X POST https://api.luw.ai/v2/generate \
-H "Authorization: Bearer LUW_API_TOKEN" \
-d "model=motion" \
-d "prompt=Modern minimalist living room" \
-d "image=https://example.com/room.jpg"
Response Example
{
"status": true,
"progress": {
"started_at": "2024-01-04T12:00:00Z",
"state": "processing",
"percent": 45
},
"processing": true,
"processing_url": "pred_123..."
}
✨ Get results using the /results
endpoint.
/results
endpoint.Alternative legacy method: Add &processing_url={url}
to your request.
Last updated