Skip to main content
You are viewing the v1 (legacy) documentation. See the v2 documentation.

Overview

The Scrape service provides basic webpage scraping capabilities, returning the raw content of a webpage.

Usage

from scrapegraph_py import Client

client = Client(api_key="your-api-key")

response = client.scrape(
    website_url="https://example.com"
)