GET
/
api
/
workers
/
{workerId}
/
deployments
/
voice
import os
from brainbase_labs import BrainbaseLabs

client = BrainbaseLabs(
    api_key=os.environ.get("BRAINBASE_LABS_API_KEY"),  # This is the default and can be omitted
)
voice_deployments = client.workers.deployments.voice.list(
    "workerId",
)
print(voice_deployments)
[
  {
    "id": "<string>",
    "phoneNumber": "<string>",
    "voiceProvider": "<string>",
    "voiceId": "<string>",
    "agentId": "<string>",
    "externalConfig": {}
  }
]

Authorizations

x-api-key
string
header
required

API key authentication

Path Parameters

workerId
string
required

Response

200
application/json
List of voice deployments
id
string
required
phoneNumber
string | null
voiceProvider
string | null
voiceId
string | null
agentId
string | null
externalConfig
object | null