
Sephora Advanced Scraper
- buseta/sephora-scraper
- Modified
- Users 9
- Runs 105
- Created by
Burak
The Sephora Reviews & Questions scraper is designed to extract detailed product information, including reviews and questions/answers, from either individual product or category URLs on Sephora's website.
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"url_list": [
"https://www.sephora.com/product/sol-de-janeiro-mini-beija-flor-body-hair-mist-P482745"
],
"proxy_config": {
"useApifyProxy": true
}
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/buseta~sephora-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'