# Collect a mechanical keyboard product detail sheet

**Use case:** 

Extract product page fields, variants, images, and seller details from a specific AliExpress item URL for comparison or cataloging.

## Input

```json
{
  "searchQuery": "mechanical keyboard",
  "startUrls": [
    {
      "url": "https://www.aliexpress.com/item/1005000000000000.html"
    }
  ],
  "maxResults": 5,
  "detailedItems": true,
  "includeReviews": false,
  "maxReviews": 1,
  "site": "aliexpress.com",
  "shipCountry": "US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "productId": {
    "label": "Product id",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount percent",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ordersCount": {
    "label": "Orders",
    "format": "integer"
  },
  "storeName": {
    "label": "Store name",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "reviewRating": {
    "label": "Review rating",
    "format": "number"
  },
  "reviewText": {
    "label": "Review text",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer country",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AliExpress Scraper — Products, Reviews & Sellers](https://apify.com/khadinakbar/aliexpress-all-in-one-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/aliexpress-all-in-one-scraper) to learn more, explore other use cases, and run it yourself.