SISIF VIDEO GENERATION API
Generate AI videos programmatically.
Simple REST endpoint. Text in, video out.
$ curl -X POST https://sisif.ai/api/videos/generate/ \ -H "Authorization: Bearer sk_live_..." \ -H "Content-Type: application/json" \ -d '{"prompt": "A golden sunset over mountains", "duration": 10}' # Response { "id": "vid_abc123", "status": "processing", "eta_seconds": 180 }
GENERATED WITH SISIF API
"A golden sunset over mountains with clouds drifting slowly"
"Ocean waves crashing on a rocky coastline at dawn"
"A cozy cabin in the snow with smoke rising from chimney"
"Northern lights dancing over a frozen lake"
"A majestic eagle soaring over mountain peaks"
"Cherry blossoms falling in a traditional Japanese garden"
HOW IT WORKS
Get Your Key
Create an API key from your dashboard. Takes 30 seconds. No credit card required.
Send Request
POST to /api/videos/generate/ with your prompt, duration, and resolution.
Get Video
Poll the status endpoint until ready. Download your video via the returned URL.
N8N INTEGRATION
Automate video generation at scale.
Connect Sisif to your existing workflows.
- - Trigger video generation from any n8n node
- - Process webhooks when videos complete
- - Chain with 400+ other integrations
- - No code required
CODE EXAMPLES
Generate Video
$ curl -X POST https://sisif.ai/api/videos/generate/ \ -H "Authorization: Bearer sk_live_xxxxxxxxxxxxx" \ -H "Content-Type: application/json" \ -d '{ "prompt": "A golden sunset over mountains", "duration": 10, "resolution": "540x960" }' # Response { "id": "vid_abc123", "status": "processing", "eta_seconds": 180 }
Check Status
$ curl https://sisif.ai/api/videos/vid_abc123/status/ \ -H "Authorization: Bearer sk_live_xxxxxxxxxxxxx" # Response { "status": "ready", "progress": 100, "video_url": "https://cdn.sisif.ai/videos/vid_abc123.mp4" }
PRICING
Pay per video. No subscriptions required.
| Resolution | Cost |
|---|---|
| 540x960 (high) | duration x 4 credits |
| 360x640 (medium) | duration x 2 credits |
| 180x320 (low) | duration x 1.5 credits |
Example: 10 second video at medium resolution = 20 credits
Need higher volume? Contact us for custom rates.
FAQ
How long does video generation take?
2-5 minutes depending on duration and resolution. Poll the status endpoint or use webhooks for notifications.
What resolutions are supported?
Three options: 180x320 (low), 360x640 (medium), 540x960 (high). All optimized for vertical/social formats.
Is there rate limiting?
Default: 10 requests/minute, 100/hour, 1000/day. Contact us for higher limits.
Can I use generated videos commercially?
Yes. All videos generated are yours to use commercially.
Do you offer webhooks?
Yes. Configure webhook URLs to receive notifications when videos complete or fail.