eBay Scraper for extracting product titles, descriptions, prices, specifications, customer reviews, and ratings from eBay
Project description
#Ebay Scraper
eBay Scraper is a sophisticated solution designed to gather data from eBay website in real time and without a hassle. This quick guide will detail the process of scraping eBay using Oxylabs' Scraper API.
How it works
You can get eBay results by providing your own URLs to our service. We can return the HTML of any eBay page you like.
Python code example
The example below illustrates how you can get an eBay product page result in HTML format.
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'universal_ecommerce',
'url': 'https://www.ebay.com/itm/293608130360',
'geo_location': 'United States',
}
# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('user', 'pass1'),
json=payload,
)
# Instead of response with job status and results url, this will return the
# JSON response with the result.
pprint(response.json())
Find code examples for other programming languages here
Output example
{
"results": [
{
"content":"<!doctype html>
<html lang="en">
<head>
...
</script></body>
</html>
",
"created_at": "2022-11-17 14:53:52",
"updated_at": "2022-11-17 14:53:54",
"page": 1,
"url": "https://www.ebay.com/itm/293608130360",
"job_id": "6999021798385787905",
"status_code": 200
}
]
}
With Oxylabs’ eBay Scraper, publicly available data extraction will feel effortless. From product information to customer reviews – you’ll have all the data you need. If you have further queries, you can contact us via live chat or email, and we’ll sort out your concerns in no time.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ebay-scraper-api-1.0.1.tar.gz
.
File metadata
- Download URL: ebay-scraper-api-1.0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 146025c488794884c8bd3e8747a0efd70d85d90c1f5b19d4c8366bf1edf3fbb6 |
|
MD5 | 62e01cf249d78f9968a50fc5f007d491 |
|
BLAKE2b-256 | 3567530767d93da5f93441ff7327b1869918bedf0f22db6b474a7f2ab9080229 |
File details
Details for the file ebay_scraper_api-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: ebay_scraper_api-1.0.1-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b25fc54564c0a47d40e9c9e5086ba1f7d80c16c70e0d460c0d2ecf61732100a |
|
MD5 | 67a331e04e80155d4359f411d74de179 |
|
BLAKE2b-256 | 0f6d874c351a28ab15c33ed16908d4afc04ee526a9029e05762f30f3d67e2468 |