> For the complete documentation index, see [llms.txt](https://docs.autocontentapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autocontentapi.com/quick-start/podcasts/from-youtube.md).

# Create from a YouTube Video

Summarize or react to a YouTube video by sending its watch URL as a `youtube` resource.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "resources": [
      { "type": "youtube", "content": "https://www.youtube.com/watch?v=VIDEO_ID" }
    ],
    "text": "Share the top lessons and include relevant quotes."
  }'
```

**Tips**

* Use playlists or multiple video URLs for panel-style recaps.
* Provide timestamps in your `text` instructions to spotlight specific moments.

## Try it in code

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