Runway Automation avatar

Runway Automation

Try for free

3 days trial then $19.00/month - No credit card required now

Go to Store
Runway Automation

Runway Automation

igolaizola/runway-automation
Try for free

3 days trial then $19.00/month - No credit card required now

Automate Runway to generate AI videos via API or UI. Create multiple videos simultaneously, manage batch processing, and view results in a built-in video gallery for easy browsing and downloading. Perfect for streamlining your RunwayML workflow.

Developer
Maintained by Community

Actor Metrics

  • 9 Monthly users

  • No reviews yet

  • 3 bookmarks

  • 88% runs succeeded

  • Created in Feb 2025

  • Modified 5 days ago

You can access the Runway Automation programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "rFdM50Jvaz5ZBa9SM"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/igolaizola~runway-automation/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-igolaizola-runway-automation",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/igolaizola~runway-automation/runs": {
50      "post": {
51        "operationId": "runs-sync-igolaizola-runway-automation",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/igolaizola~runway-automation/run-sync": {
93      "post": {
94        "operationId": "run-sync-igolaizola-runway-automation",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "session"
135        ],
136        "properties": {
137          "session": {
138            "title": "Session",
139            "type": "string",
140            "description": "Session from app.runway.com"
141          },
142          "folder": {
143            "title": "Folder in Runway",
144            "type": "string",
145            "description": "Runway folder where assets will be generated, it must be manually created in Runway"
146          },
147          "prompts": {
148            "title": "Prompts",
149            "type": "array",
150            "description": "List of prompts to generate videos",
151            "items": {
152              "type": "string"
153            }
154          },
155          "images": {
156            "title": "Image URLs (only for image to video)",
157            "type": "array",
158            "description": "List of image URLs to generate videos. (You can also use Google Drive folder URL instead)",
159            "items": {
160              "type": "string"
161            }
162          },
163          "googleDriveFolder": {
164            "title": "Google Drive folder URL (only for image to video)",
165            "type": "string",
166            "description": "Google Drive folder URL with images to generate videos. It must be publicly shared."
167          },
168          "mode": {
169            "title": "Generation mode",
170            "enum": [
171              "explore",
172              "credits"
173            ],
174            "type": "string",
175            "description": "Mode to generate videos",
176            "default": "explore"
177          },
178          "model": {
179            "title": "Model",
180            "enum": [
181              "gen3-alpha",
182              "gen3-alpha-turbo"
183            ],
184            "type": "string",
185            "description": "Model to generate images (vertical videos only available for 'Gen 3 Alpha Turbo') (text to video only available for 'Gen 3 Alpha')",
186            "default": "gen3-alpha"
187          },
188          "aspectRatio": {
189            "title": "Aspect ratio",
190            "enum": [
191              "1280x768",
192              "768x1280"
193            ],
194            "type": "string",
195            "description": "Aspect ratio of the generated images",
196            "default": "1280x768"
197          },
198          "seconds": {
199            "title": "Seconds",
200            "enum": [
201              "5s",
202              "10s"
203            ],
204            "type": "string",
205            "description": "Seconds of the generated video",
206            "default": "10s"
207          },
208          "concurrency": {
209            "title": "Concurrency",
210            "type": "integer",
211            "description": "Number of concurrent jobs",
212            "default": 1
213          },
214          "minWait": {
215            "title": "Minimum wait time",
216            "type": "integer",
217            "description": "Minimum wait time in seconds. Wait time will be randomly selected between minimum and maximum wait time.",
218            "default": 5
219          },
220          "maxWait": {
221            "title": "Maximum wait time",
222            "type": "integer",
223            "description": "Maximum wait time in seconds. Wait time will be randomly selected between minimum and maximum wait time.",
224            "default": 10
225          },
226          "jobTimeout": {
227            "title": "Job timeout",
228            "type": "integer",
229            "description": "Job timeout in seconds. If the job takes longer than the timeout, it will be skipped.",
230            "default": 300
231          },
232          "proxyConfiguration": {
233            "title": "Proxy configuration",
234            "type": "object",
235            "description": "Select proxies to be used."
236          }
237        }
238      },
239      "runsResponseSchema": {
240        "type": "object",
241        "properties": {
242          "data": {
243            "type": "object",
244            "properties": {
245              "id": {
246                "type": "string"
247              },
248              "actId": {
249                "type": "string"
250              },
251              "userId": {
252                "type": "string"
253              },
254              "startedAt": {
255                "type": "string",
256                "format": "date-time",
257                "example": "2025-01-08T00:00:00.000Z"
258              },
259              "finishedAt": {
260                "type": "string",
261                "format": "date-time",
262                "example": "2025-01-08T00:00:00.000Z"
263              },
264              "status": {
265                "type": "string",
266                "example": "READY"
267              },
268              "meta": {
269                "type": "object",
270                "properties": {
271                  "origin": {
272                    "type": "string",
273                    "example": "API"
274                  },
275                  "userAgent": {
276                    "type": "string"
277                  }
278                }
279              },
280              "stats": {
281                "type": "object",
282                "properties": {
283                  "inputBodyLen": {
284                    "type": "integer",
285                    "example": 2000
286                  },
287                  "rebootCount": {
288                    "type": "integer",
289                    "example": 0
290                  },
291                  "restartCount": {
292                    "type": "integer",
293                    "example": 0
294                  },
295                  "resurrectCount": {
296                    "type": "integer",
297                    "example": 0
298                  },
299                  "computeUnits": {
300                    "type": "integer",
301                    "example": 0
302                  }
303                }
304              },
305              "options": {
306                "type": "object",
307                "properties": {
308                  "build": {
309                    "type": "string",
310                    "example": "latest"
311                  },
312                  "timeoutSecs": {
313                    "type": "integer",
314                    "example": 300
315                  },
316                  "memoryMbytes": {
317                    "type": "integer",
318                    "example": 1024
319                  },
320                  "diskMbytes": {
321                    "type": "integer",
322                    "example": 2048
323                  }
324                }
325              },
326              "buildId": {
327                "type": "string"
328              },
329              "defaultKeyValueStoreId": {
330                "type": "string"
331              },
332              "defaultDatasetId": {
333                "type": "string"
334              },
335              "defaultRequestQueueId": {
336                "type": "string"
337              },
338              "buildNumber": {
339                "type": "string",
340                "example": "1.0.0"
341              },
342              "containerUrl": {
343                "type": "string"
344              },
345              "usage": {
346                "type": "object",
347                "properties": {
348                  "ACTOR_COMPUTE_UNITS": {
349                    "type": "integer",
350                    "example": 0
351                  },
352                  "DATASET_READS": {
353                    "type": "integer",
354                    "example": 0
355                  },
356                  "DATASET_WRITES": {
357                    "type": "integer",
358                    "example": 0
359                  },
360                  "KEY_VALUE_STORE_READS": {
361                    "type": "integer",
362                    "example": 0
363                  },
364                  "KEY_VALUE_STORE_WRITES": {
365                    "type": "integer",
366                    "example": 1
367                  },
368                  "KEY_VALUE_STORE_LISTS": {
369                    "type": "integer",
370                    "example": 0
371                  },
372                  "REQUEST_QUEUE_READS": {
373                    "type": "integer",
374                    "example": 0
375                  },
376                  "REQUEST_QUEUE_WRITES": {
377                    "type": "integer",
378                    "example": 0
379                  },
380                  "DATA_TRANSFER_INTERNAL_GBYTES": {
381                    "type": "integer",
382                    "example": 0
383                  },
384                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
385                    "type": "integer",
386                    "example": 0
387                  },
388                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
389                    "type": "integer",
390                    "example": 0
391                  },
392                  "PROXY_SERPS": {
393                    "type": "integer",
394                    "example": 0
395                  }
396                }
397              },
398              "usageTotalUsd": {
399                "type": "number",
400                "example": 0.00005
401              },
402              "usageUsd": {
403                "type": "object",
404                "properties": {
405                  "ACTOR_COMPUTE_UNITS": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "DATASET_READS": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "DATASET_WRITES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "KEY_VALUE_STORE_READS": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "KEY_VALUE_STORE_WRITES": {
422                    "type": "number",
423                    "example": 0.00005
424                  },
425                  "KEY_VALUE_STORE_LISTS": {
426                    "type": "integer",
427                    "example": 0
428                  },
429                  "REQUEST_QUEUE_READS": {
430                    "type": "integer",
431                    "example": 0
432                  },
433                  "REQUEST_QUEUE_WRITES": {
434                    "type": "integer",
435                    "example": 0
436                  },
437                  "DATA_TRANSFER_INTERNAL_GBYTES": {
438                    "type": "integer",
439                    "example": 0
440                  },
441                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
442                    "type": "integer",
443                    "example": 0
444                  },
445                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
446                    "type": "integer",
447                    "example": 0
448                  },
449                  "PROXY_SERPS": {
450                    "type": "integer",
451                    "example": 0
452                  }
453                }
454              }
455            }
456          }
457        }
458      }
459    }
460  }
461}

Runway Automation OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Runway Automation from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients: