# Compare Shopify Product Prices

**Use case:** 

Collect matching Shopify products sorted by price and compare titles, vendors, current prices, availability, images, and store URLs.

## Input

```json
{
  "query": "magnesium supplements",
  "maxItems": 200,
  "sortBy": "price_low_to_high",
  "priceMin": 5,
  "priceMax": 100,
  "onSale": false,
  "inStock": true,
  "shipsFrom": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "onSale": {
    "label": "On Sale",
    "format": "boolean"
  },
  "availableForSale": {
    "label": "Available",
    "format": "boolean"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "productType": {
    "label": "Product Type",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "totalRatings": {
    "label": "Total Ratings",
    "format": "number"
  },
  "totalReviews": {
    "label": "Total Reviews",
    "format": "number"
  },
  "variantsCount": {
    "label": "Variants",
    "format": "number"
  },
  "soldLast30Days": {
    "label": "Sold Last 30 Days",
    "format": "number"
  },
  "shopName": {
    "label": "Shop Name",
    "format": "text"
  },
  "shopUrl": {
    "label": "Shop URL",
    "format": "link"
  },
  "shopRating": {
    "label": "Shop Rating",
    "format": "number"
  },
  "shopTotalRatings": {
    "label": "Shop Total Ratings",
    "format": "number"
  },
  "shopTotalReviews": {
    "label": "Shop Total Reviews",
    "format": "number"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "shareUrl": {
    "label": "Share URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "descriptionHtml": {
    "label": "Description HTML",
    "format": "text"
  },
  "options": {
    "label": "Options",
    "format": "object"
  },
  "variants": {
    "label": "Variants",
    "format": "object"
  },
  "images": {
    "label": "Images",
    "format": "object"
  },
  "media": {
    "label": "Media",
    "format": "object"
  },
  "ratingBreakdown": {
    "label": "Rating Breakdown",
    "format": "object"
  },
  "reviews": {
    "label": "Reviews",
    "format": "object"
  },
  "shopId": {
    "label": "Shop ID",
    "format": "text"
  },
  "shopMyshopifyDomain": {
    "label": "Myshopify Domain",
    "format": "text"
  },
  "shopShareUrl": {
    "label": "Shop Share URL",
    "format": "link"
  },
  "shopAddress": {
    "label": "Shop Address",
    "format": "text"
  },
  "shopContacts": {
    "label": "Shop Contacts",
    "format": "object"
  },
  "shopCount": {
    "label": "Shop Count",
    "format": "number"
  },
  "universalProductId": {
    "label": "Universal Product ID",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Product Search - All Stores, Any Keyword](https://apify.com/clearpath/shop-by-shopify-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clearpath/shop-by-shopify-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/clearpath/shop-by-shopify-product-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
