# Create a Briefing Document from a Website

Turn a public URL into a client-ready briefing document.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "briefing_doc",
    "format": "html",
    "resources": [
      {
        "type": "website",
        "content": "https://example.com/2026-cloud-security-report"
      }
    ],
    "text": "Summarize the report for CISOs. Use sections for market context, top threats, and recommended priorities.",
    "language": "English"
  }'
```

**Tips**

* Use `format: "html"` when you want to render the briefing inside your own product or CMS.
* Add a short instruction in `text` so the generator knows the target audience and desired structure.
* Once complete, use `/documents/{id}` to fetch the normalized HTML payload.

## Try it in code

* [C#](https://docs.autocontentapi.com/code-samples/documents/csharp/from-website)
* [Node.js](https://docs.autocontentapi.com/code-samples/documents/nodejs/from-website)
* [Java](https://docs.autocontentapi.com/code-samples/documents/java/from-website)
* [PHP](https://docs.autocontentapi.com/code-samples/documents/php/from-website)
* [Python](https://docs.autocontentapi.com/code-samples/documents/python/from-website)
