Etsy Product Scraper API
API Endpoint Specifications
- Endpoint Path: /api/1/etsy
- Type of Data: JSON & 20/minute
- Data Source: Etsy
- Request Limit: 500 request/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Etsy Product Scraper API Endpoint Basic Info
API Endpoint Path
required
ETSY SERP Product Data Scraper API
api/1/etsy
Call Method
Required
GET
Type of Data Return
JSON
Output structured JSON data on ETSY SERP product
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/etsy, and accessible to on-site APP on /app/1/etsy 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
api/1/etsy
Code Integration and Response
Python Code Sample
import requests
# Required components #
token = "your buyfromlo token"
apiendpoint = "https://api.buyfromlo.com/api/1/etsy?"
keyword = "the target product keyword"
# Max.5 #
totalpage = "target total number of pages"
data="keyword=" + keyword + "&totalpage=" + totalpage
headers={"Authorization":"Bearer " + token}
# Call the api #
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
"Product Title": " " (string),
"Pricing": " " (float),
"Shipping Fee": " " (float),
"Image URL": " " (string),
"PDP URL": " " (string)
}