{"id":20709893,"url":"https://github.com/oxylabs/aliexpress-scraper","last_synced_at":"2025-05-16T13:06:36.001Z","repository":{"id":193448636,"uuid":"688800490","full_name":"oxylabs/aliexpress-scraper","owner":"oxylabs","description":"Easily collect public AliExpress data like prices, product details, and ratings with AliExpress Scraper API","archived":false,"fork":false,"pushed_at":"2025-02-11T13:06:58.000Z","size":21,"stargazers_count":230,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T09:08:49.161Z","etag":null,"topics":["ali-scraper","alibaba-api","aliexpress","aliexpress-api","aliexpress-crawler","aliexpress-scraper","aliexpress-spider","e-commerce-api","e-commerce-scraper","email-crawler","github-python","python-web-scraper","scraper-api"],"latest_commit_sha":null,"homepage":"https://oxylabs.io/products/scraper-api/ecommerce/aliexpress","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oxylabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-08T06:16:22.000Z","updated_at":"2025-03-28T23:23:39.000Z","dependencies_parsed_at":"2023-09-08T08:28:11.011Z","dependency_job_id":"6b9b2cee-620c-4e7a-bc7f-9bdf17270b15","html_url":"https://github.com/oxylabs/aliexpress-scraper","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.4,"last_synced_commit":"fd2b980ed1f6f8064312072b7d09ae6a85fc5c6e"},"previous_names":["oxylabs/aliexpress-scraper"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Faliexpress-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Faliexpress-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Faliexpress-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxylabs%2Faliexpress-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oxylabs","download_url":"https://codeload.github.com/oxylabs/aliexpress-scraper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248544038,"owners_count":21121881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ali-scraper","alibaba-api","aliexpress","aliexpress-api","aliexpress-crawler","aliexpress-scraper","aliexpress-spider","e-commerce-api","e-commerce-scraper","email-crawler","github-python","python-web-scraper","scraper-api"],"created_at":"2024-11-17T02:08:36.534Z","updated_at":"2025-04-12T09:21:33.534Z","avatar_url":"https://github.com/oxylabs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AliExpress Scraper\n\n[![Oxylabs promo code](https://raw.githubusercontent.com/oxylabs/product-integrations/refs/heads/master/Affiliate-Universal-1090x275.png)](https://oxylabs.go2cloud.org/aff_c?offer_id=7\u0026aff_id=877\u0026url_id=112)\n\n[![](https://dcbadge.vercel.app/api/server/eWsVUJrnG5)](https://discord.com/invite/Pds3gBmKMH)\n\n[\u003cu\u003eAliExpress Scraper\u003c/u\u003e](https://oxylabs.io/products/scraper-api/ecommerce/aliexpress) is a tool designed to collect public product data\nfrom AliExpress on a large scale. This short tutorial will show you how\nto scrape AliExpress with Oxylabs’ Scraper API.\n\n## How it works\n\nYou can extract AliExpress data by sending a request to our API with\nURLs you want to scrape. Our service will send back the HTML of any\nAliExpress page.\n\n### Python code example\n\nThis sample showcases how to make an API request and retrieve the HTML\nof AliExpress search results for the keyword “laptop”:\n\n```python\nimport requests\nfrom pprint import pprint\n\n# Structure payload.\npayload = {\n    'source': 'universal',\n    'url': 'https://www.aliexpress.com/w/wholesale-laptop.html?catId=0\u0026initiative_id=SB_20230907055110\u0026SearchText=laptop\u0026spm=a2g0o.best.1000002.0',\n    'user_agent_type': 'desktop',\n    'render': 'html',\n    'geo_location': 'Germany'\n}\n\n# Get response.\nresponse = requests.request(\n    'POST',\n    'https://realtime.oxylabs.io/v1/queries',\n    auth=('USERNAME', 'PASSWORD'), #Your credentials go here\n    json=payload,\n)\n\n# Instead of response with job status and results url, this will return the\n# JSON response with results.\npprint(response.json())\n\n```\n\nSee the\n[\u003cu\u003edocumentation\u003c/u\u003e](https://developers.oxylabs.io/scraper-apis/e-commerce-scraper-api/all-domains)\nfor more code samples.\n\n### Output sample\n\n```json\n{\n  \"results\": [\n    {\n      \"content\": \"\u003c!doctype html\u003e\\n\u003chtml lang=\\\"en\\\"\u003e\\n\u003chead\u003e\n      ...\n      \u003c/script\u003e\u003c/body\u003e\\n\u003c/html\u003e\\n\",\n      \"created_at\": \"2023-09-07 14:04:18\",\n      \"updated_at\": \"2023-09-07 14:04:42\",\n      \"page\": 1,\n      \"url\": \"https://www.aliexpress.com/w/wholesale-laptop.html?catId=0\u0026initiative_id=SB_20230907055110\u0026SearchText=laptop\u0026spm=a2g0o.best.1000002.0\",\n      \"job_id\": \"7105551359235115009\",\n      \"status_code\": 200\n    }\n  ]\n}\n```\n\nThe data harvesting process is significantly easier with Oxylabs’\nAliExpress Scraper API. You can collect details such as pricing,\nreviews, product information, and other public data. If you have any\nquestions, you can contact us via [\u003cu\u003elive\nchat\u003c/u\u003e](https://oxylabs.io/) or\n[\u003cu\u003eemail\u003c/u\u003e](mailto:support@oxylabs.io).\n\nAlso, check this tutorial on [pypi](https://pypi.org/project/ali-express-scraper/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxylabs%2Faliexpress-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foxylabs%2Faliexpress-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxylabs%2Faliexpress-scraper/lists"}