Easily collect public AliExpress data like prices, product details, and ratings with AliExpress Scraper API
Project description
AliExpress Scraper
AliExpress Scraper is a tool designed to collect public product data from AliExpress on a large scale. This short tutorial will show you how to scrape AliExpress with Oxylabs’ Scraper API.
How it works
You can extract AliExpress data by sending a request to our API with URLs you want to scrape. Our service will send back the HTML of any AliExpress page.
Python code example
This sample showcases how to make an API request and retrieve the HTML of AliExpress search results for the keyword “laptop”:
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'universal_ecommerce',
'url': 'https://www.aliexpress.com/w/wholesale-laptop.html?catId=0&initiative_id=SB_20230907055110&SearchText=laptop&spm=a2g0o.best.1000002.0',
'user_agent_type': 'desktop',
'render': 'html',
'geo_location': 'Germany'
}
# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('USERNAME', 'PASSWORD'), #Your credentials go here
json=payload,
)
# Instead of response with job status and results url, this will return the
# JSON response with results.
pprint(response.json())
See the documentation for more code samples.
Output sample
{
"results": [
{
"content": "<!doctype html>
<html lang="en">
<head>
...
</script></body>
</html>
",
"created_at": "2023-09-07 14:04:18",
"updated_at": "2023-09-07 14:04:42",
"page": 1,
"url": "https://www.aliexpress.com/w/wholesale-laptop.html?catId=0&initiative_id=SB_20230907055110&SearchText=laptop&spm=a2g0o.best.1000002.0",
"job_id": "7105551359235115009",
"status_code": 200
}
]
}
The data harvesting process is significantly easier with Oxylabs’ AliExpress Scraper API. You can collect details such as pricing, reviews, product information, and other public data. If you have any questions, you can contact us via live chat or email.
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 ali-express-scraper-0.1.1.tar.gz
.
File metadata
- Download URL: ali-express-scraper-0.1.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad69877d2b03afacbf16d0431b4d3a104b37f3d97a075a1ae7b5e7f4e5e8e63a |
|
MD5 | 3dcd68a872a430094e0b826af9e13f00 |
|
BLAKE2b-256 | bb162a5d68d46dcc27f9be090075176eba6bd5283523d50dc64d13781c265ff8 |
File details
Details for the file ali_express_scraper-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: ali_express_scraper-0.1.1-py3-none-any.whl
- Upload date:
- Size: 2.7 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 | abc8c5eb92dd69ddd940aa3a4980da0099c784651a1186ac05962d3d1e47a6c1 |
|
MD5 | f8b7efd07c9f8866ff8adce181f3b3ce |
|
BLAKE2b-256 | 7831406b6e9293b1770385675212392d391cfe8ad43960c084fa3f655fb7d07a |