Shopify Seller Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/shopify-seller-scraper
  • 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 Seller Scraper API Endpoint Basic Info

API Endpoint Path

required

Shopify Seller Profile Scraper

api/1/shopify-seller-scraper


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Shopify seller


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Subscription API is available on /api/1/shopify-seller-scraper, and accessible to on-site APP on /app/1/shopify-seller-scraper as well

keyword

required

Input a keyword to scraped related shopify seller selling this sort of products



Shopify Seller Profile Scraper

api/1/shopify-seller-scraper


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/shopify-seller-scraper"

## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = ""

data={"keyword": keyword}
headers={"Authorization": "Bearer " + token}

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

JSON Response Sample


{
    "Product Keyword":"",
    "Brand Name": "",
    "Shopify Store URL":"",
    "api_module":""
}