# Open Web Unlocker

> Fetch web pages and search results as clean markdown, structured JSON, or raw HTML. Use this skill when the task involves fetching a URL, scraping web content, or querying search engines (examples include reading articles, extracting product data, getting search results from Brave/Bing/DuckDuckGo, or handling JS-rendered and anti-bot pages).

- Skill: `majiayu000/open-web-unlocker` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/open-web-unlocker`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/open-web-unlocker/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/open-web-unlocker

---


# Open Web Unlocker — Fetch Skill

Open Web Unlocker fetches web pages and returns clean markdown, raw HTML, or structured JSON. It handles static pages, JS-rendered pages, anti-bot challenges, and search engine results — all via a single CLI command with no installation required.

## Quick start

```bash
bunx open-web-unlocker fetch <url>
```

Bun (`bunx`) is preferred. Node (`npx`) also works.

## Format selection

```bash
bunx open-web-unlocker fetch <url> --format markdown   # default
bunx open-web-unlocker fetch <url> --format json
bunx open-web-unlocker fetch <url> --format html
```

**Which format to use:**

| Format     | When to use                                                  |
|------------|--------------------------------------------------------------|
| `markdown` | Default. Clean content with nav/footer/boilerplate stripped. Best for reading or summarizing pages. |
| `json`     | When you need structured extracted fields (title, author, price, etc.) |
| `html`     | When you need the full raw page including all elements       |

50+ site-specific parsers produce high-quality markdown and JSON for common domains. Pages without a parser fall back to generic extraction, which may include more noise.

## Search engines

Fetch search result pages directly — Open Web Unlocker parses them into structured results:

```bash
bunx open-web-unlocker fetch "https://search.brave.com/search?q=query"
bunx open-web-unlocker fetch "https://www.bing.com/search?q=query"
bunx open-web-unlocker fetch "https://duckduckgo.com/?q=query"
```

Google is **not** supported.

## Timeout

```bash
bunx open-web-unlocker fetch <url> --timeout 45000
```

Default per-strategy timeouts: ~8s for fetch, ~15s for browser. Increase `--timeout` for slow or JS-heavy pages.

