ModelSell 文档
音频与其他音频

音频转录

将音频转换为文本

POST
/v1/audio/transcriptions

将音频转换为文本

Authorization

bearerAuth
AuthorizationBearer <token>

使用 Authorization Bearer API Key 进行鉴权。

In: header

Request Body

multipart/form-data

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/audio/transcriptions" \  -F file="" \  -F model="whisper-1"
{
  "text": "string"
}