Product Customer Review Scraper API
API Endpoint Specifications
- Endpoint Path: /api/1/customer-review-scraper
- Type of Data: JSON & 20/minute
- Data Source: Amazon
- Request Limit: 500 request/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Product Customer Review Scraper API Endpoint Basic Info
API Endpoint Path
required
Product Customer Review Scraper API
api/1/customer-review-scraper
Call Method
Required
GET
Type of Data Return
JSON
Output structured JSON data on AI PDP content
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Subscription API is available on /api/1/customer-review-scraper, and accessible to on-site APP on /app/1/customer-review-scraper as well
valuetype
required
Select a review source type: asin
value
required
If selecting asin in value type parameter, please submit a Amazon SKU Asin code here
Product Customer Review Scraper API
api/1/customer-review-scraper
Code Integration and Response
Python Code Sample
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/customer-review-scraper?"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
valuetype = ""
value = ""
data="valuetype=" + valuetype "&value=" + value
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
"Keyword":"",
"Customer Review": "",
"Channel":"",
"api_module":""
}