Minimal Crawl4AI starter — crawls a single URL and returns the page content as clean markdown.
For deep crawling, multi-URL crawling, content selection, and adaptive crawling, see the Crawl4AI documentation.
| API | Description |
|---|---|
simple-crawl |
Crawls a single URL and returns the page content as clean markdown |
uv syncIf the intuned CLI is not installed, install it globally:
npm install -g @intuned/cliAfter installing dependencies, intuned command should be available in your environment.
intuned dev run api simple-crawl .parameters/api/simple-crawl/default.jsonintuned dev provisionintuned dev deploystarter-crawl4ai/
├── api/
│ └── simple-crawl.py # Crawl a single URL to markdown
├── intuned-resources/
│ └── jobs/
│ └── simple-crawl.job.jsonc # Job definition for simple-crawl API
├── .parameters/
│ └── api/
│ └── simple-crawl/
├── Intuned.jsonc
├── pyproject.toml
└── README.md