# 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#](https://docs.autocontentapi.com/code-samples/explainer-videos/csharp/from-website)
* [Node.js](https://docs.autocontentapi.com/code-samples/explainer-videos/nodejs/from-website)
* [Java](https://docs.autocontentapi.com/code-samples/explainer-videos/java/from-website)
* [PHP](https://docs.autocontentapi.com/code-samples/explainer-videos/php/from-website)
* [Python](https://docs.autocontentapi.com/code-samples/explainer-videos/python/from-website)
