Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
artwist-polyakov avatar

Scrapedo Web Scraper

  • 43 installs
  • 177 repo stars
  • Updated May 10, 2026
  • artwist-polyakov/polyakov-claude-skills

scrapedo-web-scraper is a Claude skill that fetches blocked web pages through the Scrape.do API and returns page text or original HTML.

About

This skill fetches web pages through the Scrape.do proxy API so a request succeeds when a direct fetch is blocked. A developer uses it when normal fetching returns 403, 401, 429, timeouts, access-denied, or a Cloudflare block. It runs scripts/scrape.py from the command line or from Python and returns page text or raw HTML.

  • Fetches web pages through the Scrape.do API when a normal fetch is blocked
  • Designed to auto-trigger on WebFetch errors like 403, 429, timeout, or Cloudflare block
  • Returns page text by default or original HTML with the --html flag

Scrapedo Web Scraper by the numbers

  • 43 all-time installs (skills.sh)
  • Ranked #1,127 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

scrapedo-web-scraper capabilities & compatibility

Requires a Scrape.do API token; usage is billed per Scrape.do account.

Capabilities
web scraping · web search
Use cases
web scraping
Pricing
Bring your own API key
From the docs

What scrapedo-web-scraper says it does

Веб-скрапинг через Scrape.do. Обходит блокировки и CAPTCHA.
SKILL.md
Скрапинг веб-страниц через Scrape.do API. Используй когда обычный fetch не работает (блокировка, JavaScript).
SKILL.md
npx skills add https://github.com/artwist-polyakov/polyakov-claude-skills --skill scrapedo-web-scraper

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs43
repo stars177
Last updatedMay 10, 2026
Repositoryartwist-polyakov/polyakov-claude-skills

What it does

Retrieve a web page that a normal fetch cannot reach because of a 403, 429, timeout, or Cloudflare block.

Who is it for?

Retrieving pages that a plain fetch cannot load due to blocking or JavaScript.

When should I use this skill?

A WebFetch call fails with 403, 401, 429, timeout, access denied, or a Cloudflare block.

What you get

The page is retrieved as clean text or original HTML, or a clear error explaining why it is unavailable.

By the numbers

  • auto-triggers on 5 documented WebFetch error types (403, 401, 429, timeout, access denied)

Files

SKILL.mdMarkdownGitHub ↗

Scrape.do Web Scraper

Скрапинг веб-страниц через Scrape.do API. Используй когда обычный fetch не работает (блокировка, JavaScript).

Использование

# Получить текст страницы
python scripts/scrape.py https://example.com

# Получить HTML
python scripts/scrape.py --html https://example.com

Из Python

from scripts.scrape import fetch_via_scrapedo

result = fetch_via_scrapedo('https://example.com')
if result['success']:
    print(result['content'])  # текст
    # result['html'] — оригинальный HTML
else:
    print(result['content'])  # описание ошибки

Результат

  • Успех: текст страницы (или HTML с --html)
  • Ошибка: понятное сообщение (нет токена / лимит / недоступно)

Если вернулась ошибка — страница недоступна через этот метод.

Related skills

Automation & Workflowsintegrationsbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.