# Noon.com Shirt Price and Data Extractor

**Use case:** 

Extract pricing, specifications, and images for shirts on Noon.com. Receive structured product data for in-depth analysis and monitoring.

## Input

```json
{
  "startUrl": "https://www.noon.com/uae-en/search/?q=shirt",
  "maxProducts": 100,
  "maxPages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Product Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current Price (AED)",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original Price (AED)",
    "format": "number"
  },
  "discount": {
    "label": "Discount",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "storeName": {
    "label": "Store",
    "format": "text"
  },
  "bestSellerRank": {
    "label": "Best Seller Rank",
    "format": "text"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Noon.com Product Scraper](https://apify.com/shahidirfan/noon-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/noon-com-scraper) to learn more, explore other use cases, and run it yourself.