Voiceover
Generate voiceover audio from property data
POST
/v1/voiceover/generate202Generate a professional voiceover audio file from property data and an optional script + voice selection.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
property.address | string | No | |
property.description | string | No | |
property.price | string | No | |
property.bedrooms | number | No | |
property.bathrooms | number | No | |
options.voice_id | string | No | |
options.script | string | No | |
options.stability | number | No | |
options.similarity_boost | number | No | |
webhook_url | string | No | |
callback_metadata | object | No |
Request Example
{
"property": {
"address": "string",
"description": "string",
"price": "string",
"bedrooms": 0,
"bathrooms": 0
},
"options": {
"voice_id": "string",
"script": "string",
"stability": 0,
"similarity_boost": 0
},
"webhook_url": "string"
}Response
{
"data": {
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "queued"
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-03-12T10:00:00.000Z",
"mode": "live"
}
}GET
/v1/voiceover/voices200List available voices for voiceover generation.
Response
{
"data": {
"...": "..."
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-03-12T10:00:00.000Z",
"mode": "live"
}
}On this page