Runway · Video

OpenClaw x Runway

Runway 是领先的视频 AI 公司,其模型广泛应用于创意制作。通过 RunAPI,Runway 端点以按次计费方式统一访问。

公开版本与端点

模型 ID版本端点起步价格模型目录
runwayrunway
/api/v1/runway/text_to_video
/api/v1/runway/extend_video
$0.120模型详情

配置

指南端点: /api/v1/runway/text_to_video

export RUNAPI_API_KEY=your_api_key

curl -X POST https://runapi.ai/api/v1/runway/text_to_video \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "runway",
  "prompt": "A paper kite flying above a quiet coastal town at sunrise.",
  "duration_seconds": 5,
  "output_resolution": "720p",
  "aspect_ratio": "16:9"
}'

验证

POST /api/v1/runway/text_to_video,并保存返回的 Task ID。
GET /api/v1/runway/text_to_video/<task-id>,直到状态为 completed 或 failed。
确认 completed 响应包含 API 参考中记录的端点专属输出。

使用流程

  1. 1. 选择模型 ID

    选择公开模型 ID,并查看其端点与当前起步价格。

  2. 2. 配置 RunAPI

    调用端点前设置 RUNAPI_API_KEY。

  3. 3. 验证结果

    对于异步端点,轮询同一端点,直到 Task 进入终态。

常见问题

应该使用哪个模型 ID?

从版本表选择公开模型 ID。每个 ID 可使用的端点均显示在对应行。

本指南会配置聊天模型吗?

不会。该 Model Line 使用页面所示的端点流程,不会被描述为 Agent 聊天模型。