# Extract one AliExpress product snapshot

**Use case:** 

Resolve an AliExpress item URL to a typed snapshot with product identity, title, canonical URL, image, and any public detail fields AliExpress exposes.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds"
  ],
  "productUrls": [
    {
      "url": "https://www.aliexpress.com/item/3256812072210872.html"
    }
  ],
  "sellerUrls": [],
  "maxItems": 1,
  "maxPagesPerQuery": 1
}
```

## Output

```json
{
  "sourceType": {
    "label": "Source",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "currentPrice": {
    "label": "Current price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "orders": {
    "label": "Orders",
    "format": "number"
  },
  "storeName": {
    "label": "Store",
    "format": "string"
  },
  "url": {
    "label": "Product",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AliExpress Products & Seller Catalog Scraper](https://apify.com/automation-lab/aliexpress-products-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/aliexpress-products-scraper) to learn more, explore other use cases, and run it yourself.