원클릭으로
anakinscraper
Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | anakinscraper |
| description | Scrape any website into clean markdown or structured JSON. Anti-detect browser, smart proxy rotation, AI-powered data extraction. |
| version | 1.0.0 |
| license | AGPL-3.0 |
| user-invocable | true |
| metadata | {"openclaw":{"requires":{"bins":["node"]},"emoji":"🕷️","homepage":"https://github.com/Anakin-Inc/anakinscraper-oss"}} |
Scrape any website and get back clean markdown or structured JSON data. Uses an anti-detect browser (Camoufox) to handle JavaScript-heavy sites and anti-bot protection.
git clone https://github.com/Anakin-Inc/anakinscraper-oss.git
cd anakinscraper-oss && make up
cp -r openclaw-skill ~/.openclaw/workspace/skills/anakinscraper
The skill calls the AnakinScraper REST API at http://localhost:8080 directly. No additional build step required.
Scrape a single URL synchronously. Returns markdown, cleaned HTML, and optionally structured JSON.
Use this when the user asks to:
Parameters:
url (required) — The URL to scrapeuseBrowser (optional, default false) — Force browser rendering for JavaScript-heavy sitesgenerateJson (optional, default false) — Extract structured JSON data using AIScrape a URL and extract structured data as JSON. Best for product pages, articles, listings.
Use this when the user asks to:
Parameters:
url (required) — The URL to extract data fromScrape multiple URLs at once (up to 10). Returns results for all URLs.
Use this when the user asks to:
Parameters:
urls (required) — Array of URLs to scrape (max 10)useBrowser (optional) — Force browser renderinggenerateJson (optional) — Extract structured JSON from each pageSubmit a scrape job asynchronously. Returns a job ID for later polling. Use for pages that take longer than 30 seconds.
Parameters:
url (required) — The URL to scrapeuseBrowser (optional) — Force browser renderinggenerateJson (optional) — Extract structured JSONCheck the status of an async scrape job. Poll until status is "completed" or "failed".
Parameters:
jobId (required) — The job ID returned by anakinscraper_scrape_asyncanakinscraper_scrape for most requests — it's synchronous and returns results immediately.anakinscraper_extract_json when the user wants structured data (products, articles, listings).anakinscraper_batch_scrape when scraping multiple URLs.anakinscraper_scrape_async + anakinscraper_get_job only for pages you know will be slow (complex SPAs, heavy anti-bot sites).useBrowser: true for JavaScript-heavy sites, SPAs, or sites with anti-bot protection.