





API:Scraper
API Endpoint Path
required
ETSY SERP product data Scraper API
https://www.buyfromlo.com/api/1/etsy
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for ETSY 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
keyword
required
Input a keyword in English
totalpage
Optional
Total amount of product SERP page scraping. Max. amount of pages are 5. The default value is 1st page, which is 1.
ETSY SERP product data Scraper API
https://www.buyfromlo.com/api/1/etsy
Python Code Sample
import requests
## Required components ##
token = "your buyfromlo token"
apiendpoint = "https://www.buyfromlo.com/api/1/etsy"
keyword = "the target product keyword"
## Max. 5 pages ##
totalpage = "target total number of pages"
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword + "&totalpage=" + totalpage)
print(response.status)
print(response.json())
JSON Response Sample
{
"Product Title": "",
"Pricing": "",
"Shipping Fee": "",
"Image URL": "",
"PDP URL": ""
}