POST
/
api
/
v1
/
client
/
transcribe
/
price-calculation
Transcription Price Calculation
curl --request POST \
  --url https://api.modelbeam.srv1069417.hstgr.cloud/api/v1/client/transcribe/price-calculation \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "WhisperLargeV3",
  "include_ts": true,
  "source_url": "<string>",
  "duration_seconds": 123
}
'
{
  "data": {
    "price": 0.021
  }
}

Body

application/json
model
string
required
Example:

"WhisperLargeV3"

include_ts
boolean
required
source_url
string

URL (mutually exclusive with duration_seconds)

duration_seconds
number

Duration in seconds (mutually exclusive with source_url)

Response

Price calculated

data
object