# Use One Custom Voice

Target a single narrator by calling the CustomVoices endpoint with only `voice1`.

```bash
curl -X POST "https://api.autocontentapi.com/content/CreatePodcastCustomVoices" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "voice1": "DonnaNarrative",
    "resources": [
      {
        "type": "text",
        "content": "Highlights from this week''s roadmap, customer wins, and upcoming launches."
      }
    ],
    "text": "Record this as a solo host update with a warm, confident tone."
  }'
```

**Key fields**

* `voice1`: Required when using CustomVoices; pick any ID from your clones or the [Voices catalog](/voices.md).
* `voice2`: Omit this field to keep a single-speaker format.
* `endpoint`: Use `/content/CreatePodcastCustomVoices` whenever you provide explicit voices.

## Try it in code

* [C#](/code-samples/podcasts/csharp/single-custom-voice.md)
* [Node.js](/code-samples/podcasts/nodejs/single-custom-voice.md)
* [Java](/code-samples/podcasts/java/single-custom-voice.md)
* [PHP](/code-samples/podcasts/php/single-custom-voice.md)
* [Python](/code-samples/podcasts/python/single-custom-voice.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autocontentapi.com/quick-start/podcasts/single-custom-voice.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
