Skip to main content
GET
/
api
/
v2
/
voices
/
{voice_id}
Get a voice
curl --request GET \
  --url https://api.heymilo.ai/api/v2/voices/{voice_id} \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "id": "<string>",
    "provider": "<string>",
    "provider_voice_id": "<string>",
    "name": "<string>",
    "created_at": 123,
    "updated_at": 123,
    "object": "voice",
    "language": "en",
    "country_code": "US",
    "gender": "female",
    "preview_url": "<string>",
    "labels": {}
  },
  "meta": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.heymilo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

API key for authentication. Pass your key in the X-API-KEY header.

Headers

X-API-KEY
string
required

Path Parameters

voice_id
string
required

Response

Successful Response

data
VoiceResponse · object
required

A voice from the workspace voice registry.

Voices are added from external providers (ElevenLabs, Cartesia, LMNT) and stored in the workspace registry. The id (prefixed wrv-) is used in posting configs as voice_id.

meta
Meta · object

Optional metadata. Shape varies by endpoint.