Skip to content

Runway AI Connector

The Runway AI connector integrates Agentcy with Runway's generative AI platform. It provides 3 live tools for generating videos from text or images, and generating images from text prompts.

Authentication

The connector authenticates using a Runway API key.

json
{
  "name": "Runway AI",
  "source_type": "runway",
  "config": {
    "api_key": "rw_...",
    "default_model": "gen3",
    "default_duration": 4,
    "default_ratio": "16:9"
  }
}
VariableRequiredDescription
api_keyYesRunway API key
default_modelNoDefault video generation model
default_image_modelNoDefault image generation model
default_durationNoDefault video duration in seconds
default_ratioNoDefault aspect ratio (e.g., 16:9, 1:1, 9:16)
enabled_toolsNoTools to enable: video, image

Live Tools (3)

ToolDescriptionArguments
runway_text_to_videoGenerate a video from a text promptprompt, model?, duration?, ratio?
runway_image_to_videoGenerate a video from a source image and promptimage_url, prompt?, model?, duration?, ratio?
runway_text_to_imageGenerate an image from a text promptprompt, model?, ratio?, num_images?

Example: Agent Using Runway Tools

User: "Create a 4-second video of a sunset over the ocean"

Agent: I'll generate the video.
→ Calls runway_text_to_video(prompt: "Cinematic sunset over a calm ocean, golden hour light reflecting on waves, slow camera pan", duration: 4, ratio: "16:9")
→ Returns: generation job ID, polls for completion
→ Reports: "Video generated successfully (4s, 16:9, 1280x720). Download: [link]"
User: "Turn this product photo into a video"

Agent: I'll animate the image.
→ Calls runway_image_to_video(image_url: "https://...", prompt: "Smooth camera orbit around the product, studio lighting", duration: 4)
→ Returns: animated video of the product image

ETL Ingestion

This connector does not support ETL ingestion. All tools operate as live calls to the Runway generative API.

Configuration Reference

json
{
  "name": "Runway AI",
  "source_type": "runway",
  "config": {
    "api_key": "rw_...",
    "default_model": "gen3",
    "default_image_model": null,
    "default_duration": 4,
    "default_ratio": "16:9",
    "enabled_tools": ["video", "image"]
  }
}
FieldTypeDefaultDescription
api_keystringrequiredRunway API key
default_modelstring--Default video generation model
default_image_modelstring--Default image generation model
default_durationnumber4Default video duration in seconds
default_ratiostring16:9Default aspect ratio
enabled_toolsstring[]allTools to enable: video, image

Troubleshooting

ErrorCauseFix
401 UnauthorizedInvalid API keyVerify your Runway API key
Insufficient creditsAccount has no remaining creditsPurchase more credits on the Runway platform
Generation failedPrompt was rejected by content filterRevise the prompt to comply with Runway's content policy
TimeoutGeneration took too longRetry the request or use a shorter duration
Invalid image URLSource image is inaccessibleUse a publicly accessible image URL
Unsupported ratioAspect ratio not supportedUse 16:9, 1:1, or 9:16

Built by AgentcyLabs. For in-house deployment or Agentcy Cloud (PaaS) access, visit agentcylabs.com.