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

# Create from Saved Feeds

Leverage previously cached feed items by referencing a feed ID and selected item identifiers. Fetch selectable items with `GET /feeds/{feedId}/items`, then copy the returned item `identifier` values into `feedItemIds`.

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

**Tips**

* Use the [Create a Podcast Episode from an X Feed](/quick-start/podcasts/create-feed-podcast.md) guide to create a feed and collect item identifiers.
* Combine feeds with other resource types for broader coverage.
* `feedSelections` replaces the older top-level `feeds` array.

## Try it in code

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