Web Scraping

Web Scraping API for Any URL

POST /v1/web

Use this page when you want the simplest possible way to scrape a public webpage.

#Request Example

curl -X POST /v1/web \
  -H "Authorization: Bearer your-token" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com",
    "method": "GET"
  }'

#Request Body

{
  "url": "https://example.com",
  "method": "GET"
}

#Pricing

  • 1 credit for a standard request

Credits are only deducted for successful requests.

#Response

{
  "response": "<html>...raw response body...</html>"
}

#Typical Use Cases

  • scrape landing pages and product pages
  • collect raw HTML for your own parser
  • monitor page changes over time
  • build internal research workflows