Parsew
Integrations

AI Agent Skills

Use Parsew with AI coding agents like Claude Code, Cursor, and Windsurf.

Overview

Parsew provides official skills — reusable capabilities that teach AI agents how to use the Parsew API. Once installed, your agent can scrape websites, extract data, and analyze brands on your behalf.

Skills work with popular AI coding agents including Claude Code, Cursor, Windsurf, and others.

Installation

npx skills add parsew/skills

Setup

Make sure your PARSEW_API_KEY environment variable is set:

export PARSEW_API_KEY=sr_your_secret_key

You can get an API key from your dashboard.

Available Skills

SkillWhat it doesCredits
parsew-scrapeScrape a single URL and convert to markdown1
parsew-extractExtract structured data using a JSON schema5
parsew-batch-scrapeScrape 1–100 URLs asynchronously1/URL
parsew-brandExtract brand identity (colors, logos, fonts, personality)2–5
parsew-mapDiscover and filter links on a page1

Example Usage

Once the skills are installed, just ask your agent naturally:

  • "Scrape this page and summarize the content"
  • "Extract all product names and prices from this URL"
  • "Scrape all the blog posts on example.com"
  • "What colors and fonts does stripe.com use?"
  • "Find all links on this page that match /docs/"

Your agent will automatically use the right Parsew skill based on your request.

Optional: Install the SDK

For Node.js and TypeScript projects, your agent can use the @parsew/sdk package for a better developer experience:

npm install @parsew/sdk

The skills work with both the SDK and raw curl commands — your agent will pick the right approach based on your project.

On this page