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
2 days 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.