Your connection is active. Start generating videos with a single API call.
Quick Start
# Generate a video from a source video + brief
curl -X POST https://api.walter-ai.cloud/api/saas/pipeline \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source_video_url": "https://example.com/source.mp4",
"brief": "Create a TikTok ad for a luxury watch",
"product_name": "Montre Luxe",
"preset": "cinematic_product_reveal",
"callback_url": "https://your-app.com/webhook"
}'
# Response
{
"pipeline_id": "pipe_abc123...",
"status": "waiting_async"
}
# Poll status
curl https://api.walter-ai.cloud/api/saas/pipeline/pipe_abc123.../status \
-H "Authorization: Bearer YOUR_API_KEY"