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
"Friends laughing and splashing in the waves on a sunny beach"
"A woman in a summer dress strolling the shore at golden hour"
"A lively game of beach volleyball under a clear blue sky"
"Friends building a sandcastle together on a sunny beach"
"A joyful run along the shoreline on a bright summer day"
"Families relaxing under colorful umbrellas by turquoise water"
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 |
|---|---|
| 720x1280 (ultra) | duration x 6 credits |
| 540x960 (high) | duration x 4 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?
Two options: 540x960 (high) and 720x1280 (ultra). 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.