eBay Trending Product Scraper API

API Endpoint Specifications

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

API Endpoint Path

required

eBay Trending product data Scraper API

api/1/ebayTrend


Call Method

Required

GET

Type of Data Return

JSON

Output structured JSON data on eBay Trending SERP product


Available API Arguments & Parameters

token

required

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

url

required

Input the specific eBay trending category page url



eBay Trending product data Scraper API

api/1/ebayTrend


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/ebayTrend?"

## Required Arguments & Parameters ##

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

data="keyword=" + keyword
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": "",
    "Product URL": "",
    "Product Price": "",
    "Offer": ""
}