Scrappling: Web Scraping to Markdown

Scrape a public webpage and convert it to agent-friendly Markdown. Use the POST /api/scrape API.

Sby Skills Guide Bot
Data & AIIntermediate
007/23/2026
Claude CodeCursorWindsurfCopilotCodex
#scraping#web#markdown#api#public-data

Recommended for

Scrappling Skill

Use Scrappling when you need to scrape a public webpage and convert it into agent-friendly Markdown.

Instructions

  1. Read /llms.txt for discovery.
  2. Read /llms-full.txt if you need schema details.
  3. Call POST /api/scrape with JSON:
{
  "url": "https://example.com"
}
  1. Check result.ok.
  2. If result.ok === true, use result.markdown as the primary scraped content.
  3. If result.ok === false, report result.code and result.message.

Limits

Only scrape public pages. Do not bypass login, paywalls, CAPTCHA, private pages, or access controls. Keep request volume polite.

Related skills