Asos.com Scraper avatar
Asos.com Scraper
Try for free

2 hours trial then $25.00/month - No credit card required now

View all Actors
Asos.com Scraper

Asos.com Scraper

scrapemind/asos-com-scraper
Try for free

2 hours trial then $25.00/month - No credit card required now

Scrape search results from Asos.com fast and cheaply on resources used.

ASOS Search Scraper Actor


Asos Search Scraper

This Apify Actor scrapes search results from ASOS.com based on the search query you provide. You can specify where to start and where to stop in the search results.

Input Parameters

The Actor accepts the following input parameters:

  • search_query (required): The search query string. This is the term you want to search for on ASOS.
  • start (optional): The index of the item to start scraping from. Defaults to 0.
  • last_items (optional): The index of the item to stop scraping at. If not provided, scraping will continue until the last item.

Example Input

1{
2  "search_query": "shoes",
3  "start": 0,
4  "last_items": 10
5}

In this example, the Actor will start scraping from the first item and stop at the 10th item.

How It Works

  1. Initialization: The Actor initializes with the search query q and the optional start and last_items parameters.
  2. Pagination: The Actor navigates through the search results pages to gather items.
  3. Data Extraction: For each item in the specified range, the Actor extracts relevant information such as item title, price, URL, and image.
  4. Result Output: The extracted data is output to the dataset

Output

The output is a JSON array of objects, each representing a product with the following fields:

  • id
    • Type: integer
    • Description: Unique identifier for the product.
    • Example: 206382728
  • name
    • Type: string
    • Description: The name of the product.
    • Example: "Topshop bardot wrap top in red"
  • price
    • Type: object
    • Description: Contains pricing details for the product.
      • current:
        • Type: object
        • Description: Current price of the product.
        • Properties:
          • value: number
            • Description: Numeric value of the current price.
            • Example: 21
          • text: string
            • Description: Textual representation of the current price.
            • Example: "拢21.00"
      • previous:
        • Type: object
        • Description: Previous price of the product.
        • Properties:
          • value: number
            • Description: Numeric value of the previous price.
            • Example: 28
          • text: string
            • Description: Textual representation of the previous price.
            • Example: "拢28.00"
      • rrp:
        • Type: object
        • Description: Recommended retail price, if available.
        • Properties:
          • value: null or number
            • Description: Numeric value of the RRP, or null if not available.
            • Example: null
          • text: string
            • Description: Textual representation of the RRP.
            • Example: "" (empty string)
    • isMarkedDown:
      • Type: boolean
      • Description: Indicates whether the product is currently marked down.
      • Example: true
    • isOutletPrice:
      • Type: boolean
      • Description: Indicates if the price is an outlet price.
      • Example: false
    • currency:
      • Type: string
      • Description: Currency in which the price is listed.
      • Example: "GBP"
  • url
    • Type: string
    • Description: URL for the product's page on the retailer's website.
    • Example: "topshop/topshop-bardot-wrap-top-in-red/prd/206382728#colourWayId-206382729"
  • imageUrl
    • Type: string
    • Description: URL of the main image for the product.
    • Example: "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-1-red"
  • additionalImageUrls
    • Type: array of string
    • Description: URLs of additional images of the product.
    • Example:
    1[
    2  "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-2",
    3  "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-3",
    4  "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-4"
    5]

Example Output

1[
2{
3  "id": 206382728,
4  "name": "Topshop bardot wrap top in red",
5  "price": {
6    "current": {
7      "value": 21,
8      "text": "拢21.00"
9    },
10    "previous": {
11      "value": 28,
12      "text": "拢28.00"
13    },
14    "rrp": {
15      "value": null,
16      "text": ""
17    },
18    "isMarkedDown": true,
19    "isOutletPrice": false,
20    "currency": "GBP"
21  },
22  "colour": "",
23  "colourWayId": 206382729,
24  "brandName": "Topshop",
25  "hasVariantColours": false,
26  "hasMultiplePrices": false,
27  "groupId": null,
28  "productCode": 135048803,
29  "productType": "Product",
30  "url": "topshop/topshop-bardot-wrap-top-in-red/prd/206382728#colourWayId-206382729",
31  "imageUrl": "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-1-red",
32  "additionalImageUrls": [
33    "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-2",
34    "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-3",
35    "images.asos-media.com/products/topshop-bardot-wrap-top-in-red/206382728-4"
36  ],
37  "videoUrl": null,
38  "showVideo": false,
39  "isSellingFast": false,
40  "isRestockingSoon": false,
41  "isPromotion": false,
42  "sponsoredCampaignId": null,
43  "facetGroupings": [],
44  "advertisement": null
45},
46]

Usage

To use this Actor, follow these steps:

  1. Create an Apify account: If you don't already have one, sign up at Apify.
  2. Create a new Actor: Go to the Actors section and create a new Actor.
  3. Configure the Actor: Use the provided code and configure the input parameters.
  4. Run the Actor: Start the Actor and review the results in your Apify account.

For more information on how to set up and use Apify Actors, refer to the Apify documentation.

Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 0 stars
  • 100.0% runs succeeded
  • Created in Jul 2024
  • Modified about 1 month ago