Shopify Product Scraper API

API Endpoint Specifications

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

API Endpoint Path

required

Shopify Store Product Scraper API

api/1/shopifyTracker


Call Method

Required

GET

Type of Data Return

JSON

Output structured JSON data on Shopify Store SERP product


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/shopifyTracker, and accessible to on-site APP on /app/1/shopify 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

api/1/shopifyTracker


Code Integration and Response

Python Code Sample


import requests

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

data="tld=" + tld + "&siteURL=" + siteURL
headers={"Authorization": token}

## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


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