# 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#](/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)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autocontentapi.com/quick-start/podcasts/from-feeds.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
