# Create a Slide Deck from a Website

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

```bash
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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autocontentapi.com/quick-start/slide-decks/from-website.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
