๐Ÿ”—Create a Briefing Document from a Website

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

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": "en"
  }'

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

Last updated