# Create from a Website

Use a publicly accessible web page as the foundation for your episode. Provide the URL in a `website` resource object.

```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": "website", "content": "https://example.com/market-report" }
    ],
    "text": "Explain the long-term implications for small business owners."
  }'
```

**Tips**

* Include multiple website objects to blend different articles.
* Pair with `text` instructions to emphasize the insights you want surfaced.

## Try it in code

* [C#](/code-samples/podcasts/csharp/from-website.md)
* [Node.js](/code-samples/podcasts/nodejs/from-website.md)
* [Java](/code-samples/podcasts/java/from-website.md)
* [PHP](/code-samples/podcasts/php/from-website.md)
* [Python](/code-samples/podcasts/python/from-website.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-website.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.
