Skip to main content
GET
/
list-voices
List available voices
curl --request GET \
  --url https://app.phonely.ai/api/list-voices
[
  {
    "name": "<string>",
    "id": "<string>",
    "gender": "<string>",
    "language": "<string>",
    "tags": [
      "<string>"
    ],
    "accent": "<string>",
    "isMultiLingualSupport": true
  }
]

List Voices

Retrieves a list of all available public voices that can be used for agents.

Request

Method: GET
Endpoint: /api/list-voices
Headers: None required

Response

Success Response (200):
[
  {
    "name": "string",
    "id": "string",
    "gender": "string",
    "language": "string",
    "tags": ["string"],
    "accent": "string",
    "isMultiLingualSupport": boolean
  }
]
Error Responses:
  • 500 Internal Server Error: Server error

Example

curl -X GET https://app.phonely.ai/api/list-voices

Response

List of available voices

name
string

Name of the voice

id
string

unique voice id, use for set agent's voice

gender
string

Gender of the voice

language
string

Support language of the voice

tags
string[]

Feature tags associated with the voice

accent
string

Accent of the voice

isMultiLingualSupport
boolean

Whether the voice supports multiple languages

I