# Export a Shopify catalog as clean JSON for RAG

**Use case:** 

Point this at a Shopify store and get its whole catalog back as clean, structured JSON: product titles, full descriptions, options, every variant with its own price and stock, images, tags and collections. No HTML to strip - one field per thing you need, in a shape that embeds directly. Change the store URL to your own, raise or lower the record cap, and pay only per product saved.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://kith.com"
    }
  ],
  "maxRequestsPerCrawl": 1000,
  "maxResults": 0,
  "maxRecommendationsPerProduct": 0,
  "grabRealInventory": false,
  "maxInventoryFetches": 200,
  "grabStorefrontDetail": false,
  "maxStorefrontFetches": 200,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "source.canonicalUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price.current": {
    "label": "Price (minor units)",
    "format": "number"
  },
  "priceRange.min": {
    "label": "Min (minor units)",
    "format": "number"
  },
  "priceRange.max": {
    "label": "Max (minor units)",
    "format": "number"
  },
  "price.stockStatus": {
    "label": "Stock",
    "format": "text"
  },
  "fullyOutOfStock": {
    "label": "All variants out of stock",
    "format": "boolean"
  },
  "source.currency": {
    "label": "Currency",
    "format": "text"
  },
  "source.retailer": {
    "label": "Retailer",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/autofacts/shopify.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
