DocsIntegrationsPlaygroundPricing
Get API Key
SUPACRAWL
StatusSupportDashboard
SUPACRAWL
Docs/API Reference/Web Scrape
API Reference

Web Scrape

Scrape any URL and receive the content as clean Markdown or plain text. Handles JavaScript-rendered pages, removes navigation and ads, and formats the content for LLM consumption.

GET/v1/web/scrape1 credit

Parameters

NameTypeRequiredDefaultDescription
urlstringrequiredFull URL of the page to scrape
formatstringoptionalmarkdownOutput format: markdown or text

Code Examples

from supacrawlx import Client

client = Client("YOUR_API_KEY")
page = client.web.scrape("https://example.com/article", format="markdown")
print(page.content)

Response

JSON
{
  "url": "https://example.com/article",
  "title": "Article Title",
  "content": "# Article Title\n\nThe article content formatted as Markdown...",
  "format": "markdown",
  "creditsUsed": 1
}