# WooCommerce Product Extension Extractor

**Use case:** 

Extract one WooCommerce Marketplace extension product URL with price, categories, image, SEO text, and dates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://woocommerce.com/products/woocommerce-subscriptions/"
    }
  ],
  "categoryIds": [
    1021
  ],
  "search": "subscriptions",
  "maxItems": 1,
  "perPage": 100,
  "orderBy": "modified",
  "order": "desc",
  "includeDescription": true
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID"
  },
  "title": {
    "label": "Title"
  },
  "slug": {
    "label": "Slug"
  },
  "url": {
    "label": "URL"
  },
  "excerpt": {
    "label": "Excerpt"
  },
  "descriptionText": {
    "label": "Description"
  },
  "priceText": {
    "label": "Price"
  },
  "availability": {
    "label": "Availability"
  },
  "categories": {
    "label": "Categories"
  },
  "categoryIds": {
    "label": "Category IDs"
  },
  "tags": {
    "label": "Tags"
  },
  "imageUrl": {
    "label": "Image URL"
  },
  "seoTitle": {
    "label": "SEO title"
  },
  "seoDescription": {
    "label": "SEO description"
  },
  "authorName": {
    "label": "Author/vendor"
  },
  "datePublished": {
    "label": "Published"
  },
  "dateModified": {
    "label": "Modified"
  },
  "sourceApiUrl": {
    "label": "Source API URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [WooCommerce Marketplace Extensions Scraper](https://apify.com/automation-lab/woocommerce-marketplace-extensions-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/woocommerce-marketplace-extensions-scraper) to learn more, explore other use cases, and run it yourself.