{
  "info": {
    "name": "Runway — mcp.ai",
    "description": "REST API for the Runway MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/runway",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "runway_cancel_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "task"
          ]
        },
        "description": "Cancel a running Runway task or delete its task record. Returns success only when Runway confirms the operation; an already absent task remains a 404 error.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_create_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document"
          ]
        },
        "description": "Create a Runway knowledge document from markdown or plain text for reuse by avatar workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"content\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_create_ephemeral_upload",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/ephemeral/upload",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "ephemeral",
            "upload"
          ]
        },
        "description": "Create only a temporary Runway media upload slot and return its presigned multipart form details and runway:// URI. This action does not upload file bytes; POST them separately to upload_url using fie",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filename\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_delete_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document"
          ]
        },
        "description": "Permanently delete a Runway knowledge document by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_generate_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "image"
          ]
        },
        "description": "Start a Runway text-to-image or reference-guided image generation task and return its task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_generate_sound_effect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/sound/effect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "sound",
            "effect"
          ]
        },
        "description": "Generate an audio effect from a text prompt and return the task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_generate_speech",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/speech",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "speech"
          ]
        },
        "description": "Synthesize speech with Runway using an exact model-specific voice and option contract, then return the task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_generate_video_from_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/video/from/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "video",
            "from",
            "image"
          ]
        },
        "description": "Animate one or more input images with a selected Runway model and return the task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_generate_video_from_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/video/from/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "video",
            "from",
            "text"
          ]
        },
        "description": "Start a Runway text-to-video task with a model-specific typed request and return its task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Get one Runway knowledge document, including its full content and the avatars that currently use it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization"
          ]
        },
        "description": "Return the connected Runway organization's credit balance, monthly credit spend cap, exact per-model quotas, and current daily generation usage.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task"
          ]
        },
        "description": "Get the current status, cost, output URLs, and failure details for a Runway generation task. Runway does not update a task more often than every five seconds.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage"
          ]
        },
        "description": "Return daily Runway credit usage by model for an optional UTC date range of up to 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_date\": \"\",\n  \"before_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow"
          ]
        },
        "description": "Get a published Runway workflow version and its graph so node IDs and output keys can be inspected before running the workflow.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workflow_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_get_workflow_invocation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/workflow/invocation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "workflow",
            "invocation"
          ]
        },
        "description": "Get the current status, completed node output URLs, and node or invocation failure details for a Runway workflow invocation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"invocation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "List Runway knowledge documents one page at a time, with sorting and an opaque continuation cursor. List results omit full document content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_list_workflows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflows"
          ]
        },
        "description": "List the connected account's published Runway workflows and their available versions, ordered as returned by Runway.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_run_workflow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/workflow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "workflow"
          ]
        },
        "description": "Invoke a published Runway workflow, optionally overriding graph node outputs, and return the created workflow invocation ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workflow_id\": \"\",\n  \"node_outputs\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_transform_video",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transform/video",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transform",
            "video"
          ]
        },
        "description": "Transform or restyle an existing video with Runway and return the created task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_update_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document"
          ]
        },
        "description": "Change the name, content, or both for an existing Runway knowledge document. Provide at least one of name or content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"content\": \"\",\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_upscale_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upscale/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upscale",
            "image"
          ]
        },
        "description": "Start a Runway image upscaling task and return its task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"flavor\": \"\",\n  \"sharpen\": 0,\n  \"image_uri\": \"\",\n  \"smart_grain\": 0,\n  \"scale_factor\": 0,\n  \"ultra_detail\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "runway_upscale_video",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upscale/video",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upscale",
            "video"
          ]
        },
        "description": "Start a Runway video upscaling task and return its task ID and estimated credit cost.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"flavor\": \"\",\n  \"sharpen\": 0,\n  \"fps_boost\": false,\n  \"video_uri\": \"\",\n  \"creativity\": 0,\n  \"resolution\": \"\",\n  \"smart_grain\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}