Getting Started

It’s easy to get started with Scrapezoid. By following the steps below, you’ll be scraping the web in no time.

Create an account within the Scrapezoid Console

To get started, you’ll need to signup and create an account via the Scrapezoid Console.

Subscribe to a Scrapezoid plan

Once you have an account, you can subscribe to a Scrapezoid plan on the Scrapezoid Plans page.

Get your API key

Once you have subscribed to Scrapezoid, you can find your API key in the API Keys page.

Run your first scrape

Now that you have your API key, you can make your first API call to make sure that everything is working. Here’s an example using curl:

curl -X POST "https://api.scrapezoid.com/api/v1/scrape" \
     -H "X-Scrapezoid-Auth: YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{"url": "https://example.com"}'