Skip to main content
GET
/
voices
/
{uuid}
Get Voice Details
curl --request GET \
  --url https://api.prod.usesimple.ai/api/v1/voices/{uuid} \
  --header 'Authorization: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "languages": [
    "<string>"
  ],
  "tags": [
    "<string>"
  ],
  "audio_url": "<string>",
  "organization_id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

Unique identifier for the voice

name
string
required

Name of the voice

languages
string[]
required

List of supported languages for this voice

organization_id
integer
required

ID of the organization that owns this voice

created_at
string<date-time>
required

When the voice was created

updated_at
string<date-time>
required

When the voice was last updated

description
string | null

Description of the voice

tags
string[]

Tags associated with the voice

audio_url
string | null

Presigned URL for the voice audio sample

I