Asos Data Scraper avatar
Asos Data Scraper
Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Asos Data Scraper

Asos Data Scraper

epctex/asos-scraper
Try for free

3 days trial then $30.00/month - No credit card required now

Asos Data Scraper allows seamless extraction of publicly available data from ASOS products. It efficiently gathers essential information such as images and descriptions. The actor's capabilities extend to supporting category URLs, enabling comprehensive scraping.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "search": "women dress",
11    "startUrls": [
12        "https://www.asos.com/search/?q=women%27s+dress",
13        "https://www.asos.com/asos-design/asos-design-barbie-necklace-in-gold-tone/prd/202940265?clr=gold&colourWayId=202940268&cid=27869",
14        "https://www.asos.com/women/a-to-z-of-brands/aldo/cat/?cid=11476&refine=attribute_10992:61388&nlid=ww|shoes|shop+by+brand|aldo"
15    ],
16    "maxItems": 20,
17    "endPage": 1,
18    "extendOutputFunction": ($) => { return {} },
19    "customMapFunction": (object) => { return {...object} },
20    "proxy": {
21        "useApifyProxy": true
22    }
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("epctex/asos-scraper").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    const { items } = await client.dataset(run.defaultDatasetId).listItems();
32    items.forEach((item) => {
33        console.dir(item);
34    });
35})();
Developer
Maintained by Community
Actor metrics
  • 5 monthly users
  • 98.6% runs succeeded
  • 0.0 days response time
  • Created in Nov 2019
  • Modified about 6 hours ago