The Shopify Scraper extracts product data from public Shopify stores, including title, price, images, stock availability, and variants. You provide the store URL and preferred currency for normalization.

This scraper job is asynchronous. You’ll receive a jobId, and can fetch results via polling or webhook delivery.

Example Request

curl --request POST \
  --url 'https://api.hasdata.com/scrapers/shopify/jobs' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <your-api-key>' \
  --data '{
    "url": "https://libertasbella.com/",
    "currency": "USD"
  }'

Job Parameters

url
string
required

Full URL to the Shopify store homepage, e.g. https://libertasbella.com/

currency
string
required

Currency code used to normalize price fields, e.g. USD, EUR, GBP

Getting Results

Webhooks

Receive real-time updates when your scraper job starts, completes, or collects data.

Results API

Use the Results API to fetch your data using the jobId, with support for polling and pagination.

Stopping a Job

Cancel an active scraper job early if it’s no longer needed or you want to save credits.