> 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/explainer-videos/from-website.md).

# Create from a Website

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

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "video",
    "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/explainer-videos/csharp/from-website.md)
* [Node.js](/code-samples/explainer-videos/nodejs/from-website.md)
* [Java](/code-samples/explainer-videos/java/from-website.md)
* [PHP](/code-samples/explainer-videos/php/from-website.md)
* [Python](/code-samples/explainer-videos/python/from-website.md)
