The project is in a healthy, maintained state
The runway aleph api Ruby SDK is the language-specific package for Runway Aleph on RunAPI. Use this runway aleph api package for prompt-guided video editing when your application needs JSON request bodies, task status lookup, and consistent RunAPI errors in Ruby.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 0.2.5
 Project Readme

RunAPI

Runway Aleph API SDKs for JavaScript, Ruby, and Go on RunAPI.

npm RubyGems Go Reference License


The runway aleph api SDK packages JavaScript, Ruby, and Go clients for Runway Aleph on RunAPI. Use this runway aleph api SDK for prompt-guided video editing workflows that need typed installs, JSON request bodies, task polling, and consistent RunAPI errors across services.

Runway Aleph belongs to the Runway catalog on RunAPI. The public model page is https://runapi.ai/models/runway-aleph; variant pages below carry pricing, rate-limit, and commercial-usage details. The public runway-aleph-sdk repository groups the JavaScript, Ruby, and Go packages for this model.

Install

npm install @runapi.ai/runway-aleph
gem install runapi-runway-aleph
go get github.com/runapi-ai/runway-aleph-sdk/go@latest

What you can build

  • Build creative tools, agent pipelines, and production integrations with the runway aleph api SDK.
  • Keep one model-specific repository while installing only the language package your app needs.
  • Use create for submit-only jobs, get for status lookup, and run for submit-and-poll scripts.
  • Handle authentication, validation, rate limits, insufficient credits, task failures, and polling timeouts through RunAPI SDK errors.

The JavaScript client exposes the edit-video resource, and the Ruby and Go packages mirror the same RunAPI task lifecycle.

JavaScript quick start

import { RunwayAlephClient } from '@runapi.ai/runway-aleph';

const client = new RunwayAlephClient();

const task = await client.editVideo.create({
  // Pass the Runway Aleph request body documented at https://runapi.ai/docs#runway-aleph.
});

const status = await client.editVideo.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.

Repository layout

  • js/ publishes @runapi.ai/runway-aleph.
  • ruby/ publishes runapi-runway-aleph when RubyGems publishing resumes.
  • go/ publishes github.com/runapi-ai/runway-aleph-sdk/go and depends on github.com/runapi-ai/core-sdk/go.

Public links

Pricing and variants

Use the most specific runway aleph api variant page for pricing, rate limits, and commercial usage:

Default pricing link for the runway aleph api SDK: https://runapi.ai/models/runway-aleph

FAQ

Which package should I install for runway aleph api work?

Install the model package for your language: @runapi.ai/runway-aleph, runapi-runway-aleph, or github.com/runapi-ai/runway-aleph-sdk/go. Install core SDK packages only when you are building shared SDK infrastructure.

Where should public links point?

Primary runway aleph api links point to https://runapi.ai/models/runway-aleph. Pricing and usage-policy links point to variant pages such as https://runapi.ai/models/runway-aleph. Provider comparisons point to https://runapi.ai/providers/runway, and broad browsing points to https://runapi.ai/models.

License

Licensed under the Apache License, Version 2.0.