#
# # # # #

Shopify Product Scraper API

API:Scraper

US$5US$7

  • Scrape products information from any webshop built by using Shopify platform. Product scraping is up to 500 SKUs. 15+ product data metrics are included in the scraped result that include pricing, date_created, product name, etc. And Support to scrape ether top domain or subdomain shopify webshop domain

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Shopify Product Scraper API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


Shopify Product Scraper API Applied in BuyfromLo Onsite App.

Features

  • Scrape products information from any webshop built by using Shopify platform
  • Scrape total 500 SKUs from a Shopify webshop
  • 15+ product data metrics are included in the scraped result that include pricing, date_created, product name, etc
  • Support to scrape ether top domain or subdomain shopify webshop domain

API Endpoint Specifications

  • Endpoint Path: /api/1/shopifyTracker
  • Type of Data: JSON & 20 requests per min
  • Data Source: Shopify
  • Request Limit: 500 requests/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Shopify Product Scraper API Endpoint Basic Info

API Endpoint Path

required

Shopify Store Product Scraper API

https://www.buyfromlo.com/api/1/shopifyTracker


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for Shopify Store SERP product data


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Free and subscription APIs are both available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

tld

required

Enter the top level domain, such as www, us, hk, etc

siteURL

required

Input the root domain, such as abc.com, abc.cn



Shopify Store Product Scraper API

https://www.buyfromlo.com/api/1/shopifyTracker


Code Integration and Response

Python Code Sample


import requests

## Required components ##

token = "your buyfromlo token"
apiendpoint = "https://www.buyfromlo.com/api/1/shopifyTracker"
tld = "www"
siteURL = "your target domain"

## Call the api ##

response = requests.get(apiendpoint + "?token=" + token + "&tld=" + tld + "&siteURL=" + siteURL)
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    'Product Title': "",
    'Product ID': "",
    'Product Created at': "",
    'Product Published at': "",
    'Product Updated at': "",
    'Vendor': "",
    'URL':"" ,
    'Product Type': "",
    'Variant ID': "",
    'Product ID of Variant': "",
    'Variant title': "",
    'Variant SKU': "",
    'Variant Featured Image': "",
    'Variant Availability': "",
    'Variant Price': "",
    'Variant ComparePrice': "",
    'Variant Taxable': "",
    'Variant Shipping': "",
    'Variant Created at': "",
    'Variant Updated at': "",
    'Variant Image1': ""
}