GET
/
v1
/
ai
/
voice
/
{id}
curl --request GET \
  --url https://api.lmnt.com/v1/ai/voice/{id} \
  --header 'X-API-Key: <api-key>'
{
  "description": "UK. Young adult. Conversational",
  "gender": "F",
  "id": "morgan (for user-created voices, the id is an alphanumeric string)",
  "name": "Morgan",
  "owner": "system",
  "starred": true,
  "type": "professional"
}

Authorizations

X-API-Key
string
header
required

Your API key; get it from your LMNT account page.

Path Parameters

id
string
required

The id of the voice to update, which can be retrieved by a call to List voices.

Response

200
application/json
OK

Voice details

id
string
required

The unique identifier of this voice.

name
string
required

The display name of this voice.

owner
enum<string>
required

The owner of this voice.

Available options:
system,
me,
other
state
string
required

The state of this voice in the training pipeline (e.g., ready, training).

description
string | null

A text description of this voice.

gender
string

A tag describing the gender of this voice, e.g. male, female, nonbinary.

starred
boolean

Whether this voice has been starred by you or not.

type
enum<string>

The method by which this voice was created: instant or professional.

Available options:
instant,
professional

Was this page helpful?