





API:Scraper
API Endpoint Path
required
Amazon Best Selling Product Data Scraper API
https://www.buyfromlo.com/api/1/amazonbest
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for Amazon Best Selling 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
url
required
Input the specific Amazon best selling category page url
Amazon Best Selling Product Data Scraper API
https://www.buyfromlo.com/api/1/amazonbest
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/1/amazonbest"
## Required Arguments & Parameters ##
token = ""your buyfromlo token""
url = ""Input a category url""
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&url=" + url)
print(response.status)
print(response.json())
JSON Response Sample
{
"URL": "",
"Title": "",
"Review": "",
"Stars": "",
"Min-Price": ""
}