# Price: High to Low Shopify Products

**Use case:** 

Extract Shopify Products data filtered by Price: High to Low. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://allbirds.com"
    }
  ],
  "maxItems": 10,
  "includeOutOfStock": true,
  "sortBy": "price-descending",
  "maxRecommendationsPerProduct": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "number"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "productType": {
    "label": "Product Type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "compareAtPrice": {
    "label": "Compare At Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "variants": {
    "label": "Variants",
    "format": "array"
  },
  "options": {
    "label": "Options",
    "format": "array"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "recommendations": {
    "label": "Recommended Products",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "storeUrl": {
    "label": "Store URL",
    "format": "link"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "date"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "updatedAt": {
    "label": "Updated At",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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