Browse voices

List the voices available to your workspace and filter by language, provider, or gender.

The voice catalog your workspace can use is the source of truth. List it and filter to what you need.

1from onepin import OnepinClient
2
3client = OnepinClient()
4
5for v in client.voices.list(language=["en-us"], limit=50).data:
6 print(v.id, v.name, v.provider, v.supported_languages)

Browse the full catalog with pricing and languages at onepin.ai/models, or see Voices & Models for the model list.