POST
/
audio
/
transcriptions
curl --request POST \
  --url https://geekai.co/api/v2/audio/transcriptions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "doubao-transcribe",
  "audio": {
    "url": "https://example.com/audio.wav",
    "format": "mp3"
  },
  "retries": 0
}'
{
  "text": "<string>",
  "duration": 123
}

Authorizations

Authorization
string
header
required

JWT认证token

Body

application/json

Response

200
application/json

成功响应

The response is of type object.