Web Scraping API

With a simple GET request to our Web Scraping API, you can scrape any webpage.

Simply send a GET request to https://api.scrapingdog.com/scrape with two query string parameters, api_key which is your personal API key, and url which is the target URL you would like to scrape.

Parameters

ParameterDescription

api_key required

Your personal API key. Available on your dashboard Type: String

url required

URL of the page you want to scrape. Type: String

dynamic

It tells our server whether you want to render JS or not. It can be either true or false. By default it is true. Type: Boolean

Usage

curl "https://api.scrapingdog.com/scrape?api_key=5e5a97e5b1ca5b194f42da86&url=http://httpbin.org/ip&dynamic=false"

Response

<html>
  <head>
  </head>
  <body>
    <pre style="word-wrap: break-word; white-space: pre-wrap;">
      {"origin":"27.63.83.45"}
    </pre>
  </body>
</html>

Last updated