---
title: "OpenClaw x OpenAI Transcription 使用指南"
url: "https://runapi.ai/zh-CN/openclaw-openai-transcription.md"
canonical: "https://runapi.ai/zh-CN/openclaw-openai-transcription"
locale: "zh-CN"
model_line: "openai-transcription"
---

# OpenClaw x OpenAI Transcription

OpenAI Transcription 面向会议纪要、视频字幕、音频检索与多语言转录场景。两个变体均使用 OpenAI 兼容的音频转文字请求格式。

## 公开版本与端点

| 模型 ID | 版本 | 端点 | 起步价格 |
| --- | --- | --- | --- |
| `gpt-transcribe` | 支持关键词和语言提示的多语言语音转文字模型 | /v1/audio/transcriptions | $0.020 |
| `whisper-1` | 支持字幕与时间戳输出的灵活音频转文字模型 | /v1/audio/transcriptions | $0.020 |

## 配置

使用命令前请选择 `<model-id>`。本页不会预选默认模型。
设置 `RUNAPI_API_KEY`，然后向 `<endpoint>` 发送包含 `<model-id>` 的请求。仅当端点返回异步 Task 时才轮询。

```shell
export RUNAPI_API_KEY=your_api_key

curl -X POST https://runapi.ai<endpoint> \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d @request.json
```

POST <endpoint>。确认同步响应符合该端点的 API 参考。

## 其他操作


## 使用流程

1. **选择模型 ID.** 选择公开模型 ID，并查看其端点与当前起步价格。
2. **配置 RunAPI.** 调用端点前设置 RUNAPI_API_KEY。
3. **验证结果.** 对于异步端点，轮询同一端点，直到 Task 进入终态。

## 常见问题

### 应该使用哪个模型 ID？

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

### 本指南会配置聊天模型吗？

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


## 相关链接

- [OpenClaw](https://runapi.ai/zh-CN/openclaw)
- [OpenAI Transcription - 模型目录](https://runapi.ai/zh-CN/models/openai-transcription)
- [gpt-transcribe](https://runapi.ai/zh-CN/models/openai-transcription/gpt-transcribe)
- [whisper-1](https://runapi.ai/zh-CN/models/openai-transcription/whisper-1)

```json
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "OpenClaw x OpenAI Transcription",
  "url": "https://runapi.ai/zh-CN/openclaw-openai-transcription"
}
```
