Run a Mod

Run the Runway Gen-3 Alpha Turbo Mod

Generates videos using Runway's Gen-3 Alpha Turbo model

POST
/mods/6865704b-722f-4cc4-bff3-dd0f1d09c5f4/run
/mods/6865704b-722f-4cc4-bff3-dd0f1d09c5f4/run

The Authorization access token

Authorization

API-Key<token>

API key. Example: "API-Key": "<apiKey>"

In: header

Authorization
Required
Bearer <token>

Session token. Example: "Authorization": "Bearer <token>"

In: header

Request Body

application/jsonRequired

parameters
Required
object

curl -X POST "https://api.endless.io/v1/mods/6865704b-722f-4cc4-bff3-dd0f1d09c5f4/run" \
  -H "API-Key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "parameters": {
      "ratio": "1280:768",
      "duration": "5",
      "last_frame": {
        "type": "image",
        "url": "https://endless.supabase.co/storage/v1/object/public/static/image.png"
      },
      "first_frame": {
        "type": "image",
        "url": "https://endless.supabase.co/storage/v1/object/public/static/image.png"
      },
      "prompt_text": "string"
    }
  }'

Success

{
  "type": "video",
  "url": "https://www.youtube.com/watch?v=V3rTaj7zdoc"
}