> For the complete documentation index, see [llms.txt](https://docs.autocontentapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autocontentapi.com/quick-start/quizzes/from-website.md).

# Create a Quiz from a Website

Feed a URL into the quiz generator to turn a report into knowledge checks.

```bash
curl -X POST "https://api.autocontentapi.com/content/Create" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "outputType": "quiz",
    "resources": [
      { "type": "website", "content": "https://example.com/2024-market-report" }
    ],
    "text": "Focus on the headline stats and include 2 scenario questions.",
    "quizDifficulty": "easy"
  }'
```

**Tips**

* Pair a `website` resource with a short `text` brief to spotlight specific angles.
* Use `easy` for onboarding quizzes and `hard` for certification-style checks.
