# 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](https://docs.autocontentapi.com/voices).
* `voice2`: Omit this field to keep a single-speaker format.
* `endpoint`: Use `/content/CreatePodcastCustomVoices` whenever you provide explicit voices.

## Try it in code

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