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"

10s 540x960

"Ocean waves crashing on a rocky coastline at dawn"

10s 540x960

"A cozy cabin in the snow with smoke rising from chimney"

10s 540x960

"Northern lights dancing over a frozen lake"

10s 540x960

"A majestic eagle soaring over mountain peaks"

10s 540x960

"Cherry blossoms falling in a traditional Japanese garden"

10s 540x960

HOW IT WORKS

01

Get Your Key

Create an API key from your dashboard. Takes 30 seconds. No credit card required.

02

Send Request

POST to /api/videos/generate/ with your prompt, duration, and resolution.

03

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
View n8n Workflow Template
Example Workflow
1
Trigger: New row in Google Sheets
2
HTTP: POST to Sisif API
3
Wait: Poll status endpoint
4
Action: Upload to S3 / Send email

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

START FREE

15 credits included. No credit card required.

Get API Key

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.

START BUILDING

Get your API key and generate your first video in minutes.

Get API Key