# Find Shopify stores running Klaviyo

**Use case:** 

Scan a list of Shopify stores and keep only the ones with Klaviyo installed, with each store's launch velocity, price positioning and the rest of its app stack. A ready-made lead list for email and SMS tooling.

## Input

```json
{
  "storeUrls": [
    "allbirds.com",
    "rothys.com",
    "deathwishcoffee.com",
    "organicbasics.com",
    "finisterre.com"
  ],
  "maxProductsPerStore": 500,
  "requireApps": [
    "Klaviyo"
  ],
  "requireAppsMode": "any",
  "requireSignals": [],
  "minProducts": 0,
  "includeProducts": false,
  "detectApps": true,
  "maxConcurrency": 5
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "string"
  },
  "storeName": {
    "label": "Store name",
    "format": "string"
  },
  "apps": {
    "label": "Apps",
    "format": "array"
  },
  "appsByCategory": {
    "label": "Apps by category",
    "format": "object"
  },
  "appCount": {
    "label": "App count",
    "format": "integer"
  },
  "theme": {
    "label": "Theme",
    "format": "string"
  },
  "themeIsStock": {
    "label": "Theme is stock",
    "format": "boolean"
  },
  "socialChannels": {
    "label": "Social channels",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Shopify Stores API Velocity, Pricing & Brand Model](https://apify.com/spool/shopify-stores-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/spool/shopify-stores-api.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/spool/shopify-stores-api.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`).
