





API:Scraper
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
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
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': ""
}