runway-install-auth

"Runway install auth \u2014 AI video generation and creative AI platform.\n\

7 Tools
runway-pack Plugin
saas packs Category

Allowed Tools

ReadWriteEditBash(pip:*)Bash(npm:*)Bash(curl:*)Grep

Provided by Plugin

runway-pack

Claude Code skill pack for Runway (18 skills)

saas packs v1.0.0
View Plugin

Installation

This skill is included in the runway-pack plugin:

/plugin install runway-pack@claude-code-plugins-plus

Click to copy

Instructions

Runway Install Auth

Overview

Install the Runway ML SDK and configure API key authentication for AI video generation.

Prerequisites

  • Runway account at runwayml.com
  • API key from the Runway Developer Portal (dev.runwayml.com)
  • Python 3.9+ or Node.js 18+

Instructions

Step 1: Install SDK


set -euo pipefail
# Python
pip install runwayml

# Node.js
npm install @runwayml/sdk

Step 2: Configure Environment


# .env
RUNWAYML_API_SECRET=key_xxxxxxxxxxxxxxxxxxxxxxxx

Step 3: Verify Connection (Python)


from runwayml import RunwayML

client = RunwayML()  # Reads RUNWAYML_API_SECRET from env

# The client is ready — no explicit auth call needed
# SDK auto-authenticates on first API call
print("RunwayML client initialized")

Step 4: Verify Connection (Node.js)


import RunwayML from '@runwayml/sdk';

const runway = new RunwayML();  // Reads RUNWAYML_API_SECRET from env
console.log('RunwayML client initialized');

Output

  • runwayml SDK installed
  • API key configured via environment variable
  • Client ready for video generation

Error Handling

Error Cause Solution
401 Unauthorized Invalid API key Verify key at dev.runwayml.com
ModuleNotFoundError SDK not installed pip install runwayml
RUNWAYMLAPISECRET not set Missing env var Set in .env or export

Resources

Next Steps

Generate your first video: runway-hello-world

Ready to use runway-pack?