UNIQLO Philippines Product Scraper avatar

UNIQLO Philippines Product Scraper

Pricing

Pay per usage

Go to Apify Store
UNIQLO Philippines Product Scraper

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

Gaming Raccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

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

FieldTypeRequiredDescription
startUrlsarray 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
maxItemsintegerโŒMax products to return (default: 50, max: 200)
scrapeDetailPagesbooleanโŒ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

FieldDescription
productNameProduct title
currentPriceCurrent selling price (PHP)
originalPriceOriginal/comparison price if on sale
ratingStar rating (1.0โ€“5.0, empty if unreviewed)
reviewCountNumber of customer reviews
productUrlDirect link to product page
productIdUNIQLO internal product ID
imageUrlMain product image
genderSizeTarget gender and available size range
offerTextPromotion 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 scrapeDetailPages increases 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.