Create a Slide Deck from a Website

Feed a URL to build a slide deck that highlights the main stats and takeaways.

curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "slide_deck",
    "resources": [
      { "type": "website", "content": "https://example.com/case-study" }
    ],
    "text": "Create a client-ready case study deck with problem, solution, results, and a final CTA slide.",
    "duration": "long",
    "slideDeckFormat": "detailed"
  }'

Tips

  • Combine multiple resources (website + PDF + text) to enrich the deck outline.

  • Keep text focused on the intended audience and call-to-action so the slides stay on-message.

Last updated