# Set Explainer Video Language

Target your audience with the right narration language. Provide the `language` field when you are not supplying custom voices.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "video",
    "resources": [
      { "type": "website", "content": "https://example.com/ai-trends" }
    ],
    "text": "Highlight the three most actionable takeaways.",
    "language": "English"
  }'
```

**Key fields**

* `language`: Human-readable name from the [supported languages list](https://docs.autocontentapi.com/languages).
* `resources`: Refer to any mix of source materials to ground the script.
* `text`: Give context or instructions to shape the video.

## Try it in code

* [C#](https://docs.autocontentapi.com/code-samples/explainer-videos/csharp/set-language)
* [Node.js](https://docs.autocontentapi.com/code-samples/explainer-videos/nodejs/set-language)
* [Java](https://docs.autocontentapi.com/code-samples/explainer-videos/java/set-language)
* [PHP](https://docs.autocontentapi.com/code-samples/explainer-videos/php/set-language)
* [Python](https://docs.autocontentapi.com/code-samples/explainer-videos/python/set-language)
