POST
/
api
/
v1
/
client
/
aud2txt
Audio URL to Text (legacy)
curl --request POST \
  --url http://localhost:8000/api/v1/client/aud2txt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "audio_url": "<string>",
  "include_ts": true,
  "model": "WhisperLargeV3",
  "return_result_in_response": true,
  "webhook_url": "<string>"
}
'
{
  "data": {
    "request_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Authorizations

Authorization
string
header
required

API key obtained from the ModelBeam dashboard

Body

application/json
audio_url
string
required

Twitter/X Spaces URL

include_ts
boolean
required
model
string
required
Example:

"WhisperLargeV3"

return_result_in_response
boolean
webhook_url
string
Maximum string length: 2048

Response

Transcription job created

data
object