> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Publish Cloned Voice

> Make your cloned voice public to use.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="voiceId" type="string" required={true}>
  The ID of the voice to generate the audio sample for, or it’s name (like “maya”).
</ParamField>

### Response

<ResponseField name="status" type="string">
  The status of the request
</ResponseField>

<ResponseField name="message" type="string">
  Information regarding the status of your request.
</ResponseField>

<ResponseField name="voice" type="object">
  Object containing data of the voice.
</ResponseField>

<ResponseField name="voice.id" type="string">
  Id of the voice.
</ResponseField>

<ResponseField name="voice.name" type="string">
  Name of the voice
</ResponseField>

<ResponseField name="voice.tags" type="string">
  Tags for the voice.
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "message": "Voice published successfully",
    "voice": {
      "id": "fad27b44-667b-4ad7-a9e3-aba1ca69446b",
      "name": "Public - My Example",
      "tags": ["Exciting", "happy"],
      "ratings": 5,
      "description": "Exciting and upbeat voice."
    }
  }

  ```
</ResponseExample>
