> 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-research.md).

# Create from Deep Research Results

Transform completed Deep Research runs into narrated episodes with the `researches` array.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "researches": ["research-id-123"],
    "text": "Present the findings and recommend next steps."
  }'
```

**Tips**

* Combine multiple research IDs for cross-study roundups.
* Pair with the [Create a Podcast Episode from Deep Research](/quick-start/deep-researches/create-research-podcast.md) walkthrough for status polling.

## Try it in code

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