Amazon Offer Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/amazon-offer-scraper
  • Type of Data: JSON & 20/minute
  • Data Source: Amazon.com
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Amazon Offer Scraper API Endpoint Basic Info

API Endpoint Path

required

Amazon Offer Scraper API

/api/1/amazon-offer-scraper


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Amazon Best Selling SERP product


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and subscription APIs are both available: /api/1/amazonbest, and accessible to on-site APP on /app/1/amazonbest as well

url

required

Input the specific Amazon best selling category page url



Amazon Offer Scraper API

/api/1/amazon-offer-scraper


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/amazonbest"

## Required Arguments & Parameters ##

token = ""your buyfromlo token""
url = ""Input a category url""

data={"url": url}
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


{
    "URL": "",
    "Title": "",
    "Review": "",
    "Stars": "",
    "Min-Price": ""
}