Skip to content

The Lush Scraper API is a powerful tool that scrapes and compiles cosmetic products data from the Lush website. It's perfect for developers, data analysts, marketers, and product researchers.

Notifications You must be signed in to change notification settings

oxylabs/lush-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Lush Scraper API

Oxylabs promo code

Oxylabs' Lush Scraper is a data gathering solution allowing you to extract real-time information from an Lush website effortlessly. This brief guide showcases how Lush Scraper works, along with code examples to help you better understand how to use it hassle-free.

How it works

You can get Lush results by providing your own URLs to our service. We can return the HTML for any page you like.

Python code example

The example below illustrates how you can get HTML of Lush page.

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal_ecommerce',
    'url': 'https://www.lush.com/us/en_us/c/hair-care?gad_source=1&gclid=cjwkcaiaungubhakeiwagid4am0kiglhmkfpbgcpf2dccwnx9sjfbaahgubt2cpwy2b8cq2hjv5eohochhgqavd_bwe'
}

# 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-US\"><head><meta charSet=\"utf-8\" /><title>Hair | Lush Fresh Handmade Co ... </html>",
      "created_at": "2024-02-20 12:55:23",
      "updated_at": "2024-02-20 12:55:27",
      "page": 1,
      "url": "https://www.lush.com/us/en_us/c/hair-care?gad_source=1&gclid=cjwkcaiaungubhakeiwagid4am0kiglhmkfpbgcpf2dccwnx9sjfbaahgubt2cpwy2b8cq2hjv5eohochhgqavd_bwe",
      "job_id": "7165690401985142785",
      "status_code": 200
    }
  ]
}

Using our specialized Lush Scraper, you can easily gather public data from all official Lush web pages. Get essential product information, from price, customer reviews, to detailed descriptions, providing you with valuable insights to maintain your lead in the competitive cosmetics market. If you need any assistance, feel free to reach out to our dedicated support team through live chat or drop us an email at [email protected].

About

The Lush Scraper API is a powerful tool that scrapes and compiles cosmetic products data from the Lush website. It's perfect for developers, data analysts, marketers, and product researchers.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published