# Create from Saved Feeds

Leverage previously ingested RSS feeds by referencing their numeric IDs.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "audio",
    "feeds": [12345, 98765],
    "text": "Summarize the most recent stories with actionable advice."
  }'
```

**Tips**

* Use the [Create a Podcast Episode from an X Feed](https://github.com/miguelpieras/autocontentapi-docs/blob/main/quick-start/create-feed-podcast.md) guide to collect feed IDs.
* Combine feeds with other resource types for broader coverage.

## Try it in code

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