UNIQLO Philippines Product Scraper
Pricing
Pay per usage
UNIQLO Philippines Product Scraper
Scrapes product data from UNIQLO Philippines (uniqlo.com/ph/en). Extracts product names, prices, ratings, reviews, colors, sizes, and images from search and category listing pages.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Gaming Raccoon
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a month ago
Last modified
Categories
Share
Scrapes product data from UNIQLO Philippines — product names, prices, ratings, reviews, images, and more from search results and category listing pages.
🎯 What it does
Enter any UNIQLO PH product listing URL (search results, category page) and get back structured product data. Works for Women, Men, Kids, and Baby sections.
📥 Input
| Field | Type | Required | Description |
|---|---|---|---|
startUrls | array of URLs | ✅ | UNIQLO PH listing pages to scrape. Examples: https://www.uniqlo.com/ph/en/search?q=t-shirt, https://www.uniqlo.com/ph/en/men/bottoms |
maxItems | integer | ❌ | Max products to return (default: 50, max: 200) |
scrapeDetailPages | boolean | ❌ | Set to true to visit each product's detail page for additional data (sizes, stock, description). Doubles the run time. |
📤 Output
Each product yields a clean JSON record:
{"productName": "AIRism Crew Neck T-Shirt","currentPrice": "PHP 490.00","originalPrice": "PHP 590.00","rating": "4.8","reviewCount": "135","productUrl": "https://www.uniqlo.com/ph/en/products/E462204-000/00?colorDisplayCode=69","productId": "E462204-000","imageUrl": "https://image.uniqlo.com/UQ/ST3/ph/imagesgoods/462204/item/phgoods_69_462204_3x4.jpg?width=300","genderSize": "Men, S-3XL","offerText": "Online + App-Member Price from 24 Jul – 28 Jul 2026"}
Fields explained
| Field | Description |
|---|---|
productName | Product title |
currentPrice | Current selling price (PHP) |
originalPrice | Original/comparison price if on sale |
rating | Star rating (1.0–5.0, empty if unreviewed) |
reviewCount | Number of customer reviews |
productUrl | Direct link to product page |
productId | UNIQLO internal product ID |
imageUrl | Main product image |
genderSize | Target gender and available size range |
offerText | Promotion or limited-time offer text |
With detail page scraping enabled (scrapeDetailPages: true)
Additional fields added:
availableSizes— List of sizes in stock (e.g.["S", "M", "L"])stockStatus— "In stock", "Out of stock", etc.colorCode— UNIQLO color code (e.g. "69")colorName— Color name (e.g. "DARK BROWN")features— Description/bullet points
🚀 Example runs
Scrape t-shirts:
{"startUrls": [{"url": "https://www.uniqlo.com/ph/en/search?q=t-shirt"}],"maxItems": 20}
Scrape all men's bottoms:
{"startUrls": [{"url": "https://www.uniqlo.com/ph/en/men/bottoms"}],"maxItems": 100}
💡 Tips
- Search URLs (
/search?q=...) work best — they always show product tiles - Category pages (
/men/bottoms,/women/outerwear) also work - Landing/promo pages (
/men,/women) don't have product grids — use specific categories or search instead - Results are capped at 24 products per listing page (UNIQLO's limit). For more products, add multiple start URLs
- Enabling
scrapeDetailPagesincreases run time (each product page takes ~3-5s to load)
⚙️ Tech
Built with Apify SDK + Crawlee + Playwright. Runs a real Chromium browser to handle UNIQLO's JavaScript-rendered pages.