Skip to main content
POST
/api/v1/audio/voice-changer/quote
Use this endpoint before /audio/voice-changer/queue to estimate the USD cost of converting a source recording of a given length. Voice Changer is billed from the source duration, rounded up to the next whole minute. The queue response returns the measured duration_seconds so you can reconcile the estimate. Voice-changer models are not accepted on /audio/quote.

Postman Collection

For additional examples, please see this Postman Collection.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model
string
required

The voice-changer model to price. Models that are not voice changers are not supported here; use /api/v1/audio/quote instead.

Example:

"elevenlabs-voice-changer"

duration_seconds
required

Length of the source recording in seconds. Voice Changer preserves timing, so the source length is the billable quantity, priced in whole-minute tiers. This is an estimate: the charge is computed from the length Venice measures server-side when the recording is queued. The per-model maximum is published as max_source_audio_duration_seconds in /models.

Required range: x > 0
Example:

60

Response

Estimated price for a conversion of the given source length

quote
number
required

Estimated price in USD for converting a recording of the given length.

Example:

0.35

duration_seconds
number
required

The source length this quote was computed for.

Example:

60