Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.scrapegraphai.com/llms.txt

Use this file to discover all available pages before exploring further.

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"
)