#
# # # # #

eBay SERP Product Scraper API

API:Scraper

US$5US$10

  • eBay Product scraper crawls the product information from eBay.com. API allows to filter by platform domain country, best selling, best review. Users can scrape the product information using a keyword query. The scraped dataset include product name, pricing, shipping fees, brand name, product page URL etc.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


eBay SERP Product Scraper API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


eBay SERP Product Scraper API Applied in BuyfromLo Onsite App.

Features

  • eBay Product scraper crawls the product information from eBay.com.
  • API allows to filter by platform domain country, best selling, best review.
  • Users can scrape the product information using a keyword query.
  • The scraped dataset include product name, pricing, shipping fees, brand name, product page URL etc.

API Endpoint Specifications

  • Endpoint Path: /api/1/ebaySERP
  • Type of Data: JSON & 20 requests per min
  • Data Source: eBay.com
  • Request Limit: 500 requests/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

eBay SERP Product Scraper API Endpoint Basic Info

API Endpoint Path

required

eBay SERP product data Scraper API

https://www.buyfromlo.com/api/1/ebaySERP


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for eBay SERP product data


Available API Arguments & Parameters

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



eBay SERP product data Scraper API

https://www.buyfromlo.com/api/1/ebaySERP


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://www.buyfromlo.com/api/1/ebaySERP"

## Required Arguments & Parameters ##

token = ""your buyfromlo token""
keyword = ""Input a query""

## Call the api ##
response = requests.get(apiendpoint + ""?token="" + token + ""&keyword="" + keyword)
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "Keyword": "",
    "Product Title": "",
    "Product Image": "",
    "Product Link": "",
    "Product Condition": "",
    "Product Price": "",
    "Product Returns": "",
    "Product Review": "",
    "Product Delivery": "",
    "serp_machine_learning_model": ""
}