v0.0.38
getmaxun/maxunv0.0.38Apr 20, 2026by amhsirak
AI Summary
This release focuses on significant performance improvements, making core workflows up to 9.7x faster, and introduces 'Smart Queries' which allow users to attach natural language instructions to scraping workflows for AI-driven extraction.
Key Highlights
- Significant performance boost: 9.74x faster extraction, 5.71x faster scraping, and 5.31x faster crawling
- Introduction of Smart Queries enabling natural language instructions for AI-driven extraction
- New promptResult field in run outputs providing structured answers from LLMs
- Smart Queries available across Dashboard, API, SDK, and CLI
New Features
- Smart Queries (AI extraction)
- Text content support for scrape
- SSL config for hosted DB
- Performance optimizations for robot runs
Full Release Notes
## ⚡ Performance Improvements
Maxun is now significantly faster across core workflows
* **Extract** → **9.74× faster**
* **Scrape** → **5.71× faster**
* **Crawl** → **5.31× faster**
* **Search** → **2.09× faster**
## ✨ Smart Queries
You can now attach **natural language instructions** to your scraping workflows.
With Smart Queries, Maxun doesn’t just scrape pages — it can **understand and extract exactly what you need** using AI.
### How it works
Add a prompt while creating a scrape robot. After the page is scraped, an LLM analyzes the content and returns a structured answer — no extra setup required.
**Examples**
* *“List all pricing plans and their prices”*
* *“Find the latest blog post title and date”*
### Output
Runs now include a new field
```json
{
"markdown": "...",
"html": "...",
"promptResult": "The pricing plans are: Starter ($9/mo), Growth ($29/mo), Pro ($99/mo)."
}
```
### Works Via
* Dashboard (No-Code)
* API
* SDK
* CLI
### Learn more
https://docs.maxun.dev/robot/scrape
## What's Changed
* fix: filter out separators by @RohitR311 in https://github.com/getmaxun/maxun/pull/1034
* fix: enable pagination highlighting by @RohitR311 in https://github.com/getmaxun/maxun/pull/1035
* fix: improve markdown conversion by @RohitR311 in https://github.com/getmaxun/maxun/pull/1037
* fix: malformed URLs not being processed by @RohitR311 in https://github.com/getmaxun/maxun/pull/1038
* feat: ssl config for hosted db by @RohitR311 in https://github.com/getmaxun/maxun/pull/1039
* feat(core): speed up robot runs by @RohitR311 in https://github.com/getmaxun/maxun/pull/1040
* fix: scrape robot edit section by @RohitR311 in https://github.com/getmaxun/maxun/pull/1043
* feat: add text content support for scrape by @RohitR311 in https://github.com/getmaxun/maxun/pull/1041
* feat: post scraping smart queries by @RohitR311 in https://github.com/getmaxun/maxun/pull/1042
* chore(deps): upgrade vite version to 6.4.2 by @amhsirak in https://github.com/getmaxun/maxun/pull/1036
* chore: pre-release v0.0.38 by @amhsirak in https://github.com/getmaxun/maxun/pull/1044
**Full Changelog**: https://github.com/getmaxun/maxun/compare/v0.0.37...v0.0.38