Runway API SDKs for JavaScript, Ruby, and Go on RunAPI.
The runway api SDK packages JavaScript, Ruby, and Go clients for Runway on RunAPI. Use this runway api SDK for text-to-video generation and video extension workflows that need typed installs, JSON request bodies, task polling, and consistent RunAPI errors across services.
Runway belongs to the Runway catalog on RunAPI. The public model page is https://runapi.ai/models/runway; variant pages below carry pricing, rate-limit, and commercial-usage details. The public runway-sdk repository groups the JavaScript, Ruby, and Go packages for this model.
npm install @runapi.ai/runway
gem install runapi-runway
go get github.com/runapi-ai/runway-sdk/go@latest- Build creative tools, agent pipelines, and production integrations with the runway api SDK.
- Keep one model-specific repository while installing only the language package your app needs.
- Use
createfor submit-only jobs,getfor status lookup, andrunfor submit-and-poll scripts. - Handle authentication, validation, rate limits, insufficient credits, task failures, and polling timeouts through RunAPI SDK errors.
The JavaScript client exposes text to video, extend video resources, and the Ruby and Go packages mirror the same RunAPI task lifecycle.
import { RunwayClient } from '@runapi.ai/runway';
const client = new RunwayClient();
const task = await client.textToVideo.create({
// Pass the Runway request body documented at https://runapi.ai/docs#runway.
});
const status = await client.textToVideo.get(task.id);For short scripts, use run with the same JSON body to create the task and wait for completion. For web request handlers, prefer create plus webhook or later get polling so the server does not hold a worker open.
js/publishes@runapi.ai/runway.ruby/publishesrunapi-runwaywhen RubyGems publishing resumes.go/publishesgithub.com/runapi-ai/runway-sdk/goand depends ongithub.com/runapi-ai/core-sdk/go.
- Model page: https://runapi.ai/models/runway
- SDK docs: https://runapi.ai/docs#sdk-runway
- Product docs: https://runapi.ai/docs#runway
- SDK repository: https://github.com/runapi-ai/runway-sdk
- Skill repository: https://github.com/runapi-ai/runway
- Provider comparison: https://runapi.ai/providers/runway
- Full catalog: https://runapi.ai/models
Use the most specific runway api variant page for pricing, rate limits, and commercial usage:
Default pricing link for the runway api SDK: https://runapi.ai/models/runway
Install the model package for your language: @runapi.ai/runway, runapi-runway, or github.com/runapi-ai/runway-sdk/go. Install core SDK packages only when you are building shared SDK infrastructure.
Primary runway api links point to https://runapi.ai/models/runway. Pricing and usage-policy links point to variant pages such as https://runapi.ai/models/runway. Provider comparisons point to https://runapi.ai/providers/runway, and broad browsing points to https://runapi.ai/models.
Licensed under the Apache License, Version 2.0.